mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-11-01 19:27:51 +00:00
Initial commit
This commit is contained in:
10
app/containers/Accounts/index.js
Normal file
10
app/containers/Accounts/index.js
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user