Sorting and searching are working

This commit is contained in:
2018-12-10 01:41:37 +11:00
parent 057fa7697d
commit 95879b279f
5 changed files with 329 additions and 14 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
import React from "react";
import { BrowserRouter, Switch, Route, Link } from "react-router-dom";
import { Header, Container } from "semantic-ui-react";
import { Header, Container, Divider } from "semantic-ui-react";
//include styles
import "./styles/shared.css";
@@ -34,6 +34,7 @@ class App extends React.Component {
<LinkButton to="/concepts">Concepts</LinkButton>
<LinkButton to="/about">About</LinkButton>
</LinkButton.Group>
<Divider hidden />
<Switch>
<Route exact path="/" component={ Landing } />
<Route exact path="/rules" component={ Rules } />