summaryrefslogtreecommitdiffstats
path: root/ui/src/index.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-23 20:17:02 -0700
committerDessalines <tyhou13@gmx.com>2019-04-23 20:17:02 -0700
commitc9dce03b23576656f9583179c89de78bedfd088a (patch)
tree7fb5db7815013cefe0f86bec50b37bf862a9d068 /ui/src/index.tsx
parenta63741f7e12303ddddd47c516bc4a40fda392c78 (diff)
Adding a sponsors page.
Diffstat (limited to 'ui/src/index.tsx')
-rw-r--r--ui/src/index.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/src/index.tsx b/ui/src/index.tsx
index b3b46904..4b3cd611 100644
--- a/ui/src/index.tsx
+++ b/ui/src/index.tsx
@@ -15,6 +15,7 @@ import { Modlog } from './components/modlog';
import { Setup } from './components/setup';
import { Inbox } from './components/inbox';
import { Search } from './components/search';
+import { Sponsors } from './components/sponsors';
import { Symbols } from './components/symbols';
import './css/bootstrap.min.css';
@@ -54,6 +55,7 @@ class Index extends Component<any, any> {
<Route path={`/modlog`} component={Modlog} />
<Route path={`/setup`} component={Setup} />
<Route path={`/search`} component={Search} />
+ <Route path={`/sponsors`} component={Sponsors} />
</Switch>
<Symbols />
</div>