fixed rgb light, new info page

This commit is contained in:
Matei Adriel 2019-08-01 16:09:14 +03:00
commit fddba4e55e
25 changed files with 453 additions and 38 deletions
src/modules/core/components

View file

@ -16,6 +16,7 @@ import Root from './Root'
import LogicGatePage from '../../logic-gates/components/LogicGatesPage'
import { loadSubject } from '../subjects/loadedSubject'
import { CustomRouter } from './CustomRouter'
import LogicGateInfoPage from '../../logic-gate-info/components/LogicGateInfoPage'
const App = () => {
useEffect(() => {
@ -33,6 +34,7 @@ const App = () => {
<Route path="/" component={Root} exact />
<Route path="/gates" component={LogicGatePage} />
<Route path="/info/:name" component={LogicGateInfoPage} />
</CustomRouter>
</Theme>