diff --git a/packages/console/src/App.tsx b/packages/console/src/App.tsx index 94d8b23e6..f26461180 100644 --- a/packages/console/src/App.tsx +++ b/packages/console/src/App.tsx @@ -18,6 +18,7 @@ import Callback from './pages/Callback'; import ConnectorDetails from './pages/ConnectorDetails'; import Connectors from './pages/Connectors'; import GetStarted from './pages/GetStarted'; +import NotFound from './pages/NotFound'; import UserDetails from './pages/UserDetails'; import Users from './pages/Users'; @@ -42,6 +43,7 @@ const Main = () => { } /> }> + } /> } /> } /> diff --git a/packages/console/src/pages/NotFound/index.tsx b/packages/console/src/pages/NotFound/index.tsx new file mode 100644 index 000000000..544c763e4 --- /dev/null +++ b/packages/console/src/pages/NotFound/index.tsx @@ -0,0 +1,7 @@ +import React from 'react'; + +const NotFound = () => { + return
NotFound
; +}; + +export default NotFound;