Community route

This commit is contained in:
Belen Curcio
2016-11-08 18:50:40 -03:00
parent c9453c3c2a
commit 52fd6c1618
2 changed files with 6 additions and 1 deletions
+1
View File
@@ -13,6 +13,7 @@ const routes = (
<IndexRoute component={ModerationQueue} />
<Route path='embed' component={CommentStream} />
<Route path='embedlink' component={EmbedLink} />
<Route path='community' component={CommunityContainer} />
<Route path='configure' component={Configure} />
</Route>
);
@@ -5,6 +5,10 @@ import translations from '../translations'
export default class CommunityContainer extends Component {
render() {
return <div>Hello</div>
return (
<div>
<h1>Community</h1>
</div>
)
}
}