guesstimate/client/src/components/DashboardPage/Dashboard.tsx

19 lines
431 B
TypeScript
Raw Normal View History

2020-08-09 10:51:02 +02:00
import React from 'react';
2020-08-09 15:30:06 +02:00
import { ProjectPanel } from './ProjectPanel';
import { ProjectModelPanel } from './ProjectModelPanel';
2020-08-09 10:51:02 +02:00
export function Dashboard() {
return (
2020-08-09 15:30:06 +02:00
<div className="columns">
<div className="column is-4">
<ProjectPanel />
</div>
<div className="column is-4">
<ProjectModelPanel />
</div>
<div className="column is-4">
2020-08-09 10:51:02 +02:00
</div>
</div>
);
}