mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-11-02 19:57:58 +00:00
initial commit
This commit is contained in:
8
app/containers/System/containers/AutoProvision/index.js
Normal file
8
app/containers/System/containers/AutoProvision/index.js
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { AutoProvision as AutoProvisionPage } from '@tip-wlan/wlan-cloud-ui-library';
|
||||||
|
|
||||||
|
const AutoProvision = () => {
|
||||||
|
return <AutoProvisionPage />;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AutoProvision;
|
||||||
@@ -5,6 +5,7 @@ import { System as SystemPage } from '@tip-wlan/wlan-cloud-ui-library';
|
|||||||
|
|
||||||
import Manufacturer from 'containers/System/containers/Manufacturer';
|
import Manufacturer from 'containers/System/containers/Manufacturer';
|
||||||
import Firmware from 'containers/System/containers/Firmware';
|
import Firmware from 'containers/System/containers/Firmware';
|
||||||
|
import AutoProvision from 'containers/System/containers/AutoProvision';
|
||||||
|
|
||||||
const System = () => {
|
const System = () => {
|
||||||
const { path } = useRouteMatch();
|
const { path } = useRouteMatch();
|
||||||
@@ -14,6 +15,7 @@ const System = () => {
|
|||||||
<Switch>
|
<Switch>
|
||||||
<Route exact path={`${path}/manufacturer`} component={Manufacturer} />
|
<Route exact path={`${path}/manufacturer`} component={Manufacturer} />
|
||||||
<Route exact path={`${path}/firmware`} component={Firmware} />
|
<Route exact path={`${path}/firmware`} component={Firmware} />
|
||||||
|
<Route exact path={`${path}/autoprovision`} component={AutoProvision} />
|
||||||
|
|
||||||
<Redirect from={path} to={`${path}/manufacturer`} />
|
<Redirect from={path} to={`${path}/manufacturer`} />
|
||||||
</Switch>
|
</Switch>
|
||||||
|
|||||||
Reference in New Issue
Block a user