summaryrefslogtreecommitdiffstats
path: root/ui/src/index.tsx
diff options
context:
space:
mode:
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 716684de..b3b46904 100644
--- a/ui/src/index.tsx
+++ b/ui/src/index.tsx
@@ -14,6 +14,7 @@ import { User } from './components/user';
import { Modlog } from './components/modlog';
import { Setup } from './components/setup';
import { Inbox } from './components/inbox';
+import { Search } from './components/search';
import { Symbols } from './components/symbols';
import './css/bootstrap.min.css';
@@ -52,6 +53,7 @@ class Index extends Component<any, any> {
<Route path={`/modlog/community/:community_id`} component={Modlog} />
<Route path={`/modlog`} component={Modlog} />
<Route path={`/setup`} component={Setup} />
+ <Route path={`/search`} component={Search} />
</Switch>
<Symbols />
</div>