Initial commit

This commit is contained in:
Irtiza-h30
2020-05-12 16:35:50 -04:00
parent 4d5c84ad4a
commit db7ebdc9d6
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import React from 'react';
import { Accounts as AccountsPage } from '@tip-wlan/wlan-cloud-ui-library';
export default function Accounts() {
return (
<div>
<AccountsPage />
</div>
);
}

View File

@@ -11,6 +11,7 @@ import { COMPANY } from 'constants/index';
import Login from 'containers/Login';
import ClientDevices from 'containers/ClientDevices';
import EditAccount from 'containers/EditAccount';
import Accounts from 'containers/Accounts';
import UnauthenticatedRoute from './components/UnauthenticatedRoute';
import ProtectedRouteWithLayout from './components/ProtectedRouteWithLayout';
@@ -35,6 +36,7 @@ const App = () => (
<ProtectedRouteWithLayout exact path="/dashboard" component={Dashboard} />
<ProtectedRouteWithLayout exact path="/network/client-devices" component={ClientDevices} />
<ProtectedRouteWithLayout exact path="/account/edit" component={EditAccount} />
<ProtectedRouteWithLayout exact path="/accounts" component={Accounts} />
</Switch>
</ThemeProvider>
);