@@ -55,14 +55,14 @@ export default class Layout extends PureComponent<Props, State> {
5555< S . Container >
5656< S . Nav >
5757< S . NavLeft >
58- < Link to = "/" >
58+ < Link to = "/dob-react-hackernews " >
5959< S . Logo src = "https://avatars1.githubusercontent.com/u/32093464?s=200& v = 4 " />
6060</ Link >
61- < Link to = "/" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews' } ) } > top</ Link >
62- < Link to = "/new" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews/new' } ) } > new</ Link >
63- < Link to = "/show" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews/show' } ) } > show</ Link >
64- < Link to = "/ask" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews/ask' } ) } > ask</ Link >
65- < Link to = "/jobs" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews/jobs' } ) } > jobs</ Link >
61+ < Link to = "/dob-react-hackernews " className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews' } ) } > top</ Link >
62+ < Link to = "/dob-react-hackernews/ new" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews/new' } ) } > new</ Link >
63+ < Link to = "/dob-react-hackernews/ show" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews/show' } ) } > show</ Link >
64+ < Link to = "/dob-react-hackernews/ ask" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews/ask' } ) } > ask</ Link >
65+ < Link to = "/dob-react-hackernews/ jobs" className = { classnames ( { active :this . props . location . pathname === '/dob-react-hackernews/jobs' } ) } > jobs</ Link >
6666</ S . NavLeft >
6767
6868< S . NavRight >
@@ -71,11 +71,11 @@ export default class Layout extends PureComponent<Props, State> {
7171</ S . Nav >
7272
7373< Switch >
74- < Route exact path = "/" render = { props => < Lists type = "top" /> } />
75- < Route exact path = "/new" render = { props => < Lists type = "new" /> } />
76- < Route exact path = "/show" render = { props => < Lists type = "show" /> } />
77- < Route exact path = "/ask" render = { props => < Lists type = "ask" /> } />
78- < Route exact path = "/jobs" render = { props => < Lists type = "jobs" /> } />
74+ < Route exact path = "/dob-react-hackernews " render = { props => < Lists type = "top" /> } />
75+ < Route exact path = "/dob-react-hackernews/ new" render = { props => < Lists type = "new" /> } />
76+ < Route exact path = "/dob-react-hackernews/ show" render = { props => < Lists type = "show" /> } />
77+ < Route exact path = "/dob-react-hackernews/ ask" render = { props => < Lists type = "ask" /> } />
78+ < Route exact path = "/dob-react-hackernews/ jobs" render = { props => < Lists type = "jobs" /> } />
7979</ Switch >
8080</ S . Container >
8181) ;