mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-11-02 03:37:59 +00:00
22 lines
490 B
JavaScript
22 lines
490 B
JavaScript
import React from 'react';
|
|
import { Helmet } from 'react-helmet';
|
|
import { Switch } from 'react-router-dom';
|
|
|
|
import { Dashboard } from 'cu-ui';
|
|
|
|
import RouteWithLayout from './components/RouteWithLayout';
|
|
|
|
const App = () => (
|
|
<>
|
|
<Helmet titleTemplate="%s - ConnectUs" defaultTitle="ConnectUs">
|
|
<meta name="description" content="ConnectUs" />
|
|
</Helmet>
|
|
|
|
<Switch>
|
|
<RouteWithLayout exact path="/" component={Dashboard} />
|
|
</Switch>
|
|
</>
|
|
);
|
|
|
|
export default App;
|