feat: simple theme selector. only works with hardcoded light and dark for now

This commit is contained in:
Deluan
2020-03-31 09:35:44 -04:00
parent 500207f7b8
commit f041503a85
8 changed files with 112 additions and 10 deletions
+7
View File
@@ -0,0 +1,7 @@
import React from 'react'
import { Route } from 'react-router-dom'
import Configuration from './configuration/Configuration'
export default [
<Route exact path="/configuration" render={() => <Configuration />} />
]