Skip to content

Commit f105b7d

Browse files
queervioletqueerviolet
queerviolet
authored and
queerviolet
committed
Make links on demo page absolute paths to end the madness.
1 parent 0e8a32c commit f105b7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

demos/index.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ import Chat from './chat'
88

99
const Index = ({children}) => <div>
1010
<h1>Demos!</h1>
11-
<h2><Link to='demos/scratchpad/welcome'>Scratchpad</Link></h2>
11+
<h2><Link to='/demos/scratchpad/welcome'>Scratchpad</Link></h2>
1212
<p>
1313
The scratchpad is the very simplest React/Firebase demo—a text area
1414
whose content is synced with Firebase.
1515
</p>
1616

17-
<h2><Link to='demos/chat/welcome'>Chat</Link></h2>
17+
<h2><Link to='/demos/chat/welcome'>Chat</Link></h2>
1818
<p>
1919
A chat room — the canonical Firebase example.
2020
</p>
2121

22-
<h2><Link to='demos/whiteboard/welcome'>Whiteboard</Link></h2>
22+
<h2><Link to='/demos/whiteboard/welcome'>Whiteboard</Link></h2>
2323
<p>
2424
The whiteboard demonstrates the <i>journal</i> pattern, a way to use Firebase
2525
to synchronize the state of Redux stores on all collaborators machines.

0 commit comments

Comments
 (0)