mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
WIP Frontend structure & authentication.
This commit is contained in:
15
client/src/components/Dashboard/Dashboard.js
Normal file
15
client/src/components/Dashboard/Dashboard.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user