WIP Frontend development.

This commit is contained in:
Ahmed Bouhuolia
2020-02-18 02:31:42 +02:00
parent e5c78fe555
commit a37341ff00
24 changed files with 364 additions and 80 deletions

View File

@@ -1,15 +1,12 @@
import React from 'react';
import {Route} from 'react-router-dom';
import Sidebar from 'components/Sidebar/Sidebar';
import DashboardContent from 'components/Dashboard/DashboardContent';
export default function() {
return (
<div className="dashboard" id="dashboard">
<Route pathname="/dashboard/">
<Sidebar />
<DashboardContent />
</Route>
<Sidebar />
<DashboardContent />
</div>
)
}