15 lines
283 B
JavaScript
15 lines
283 B
JavaScript
|
import React from 'react';
|
||
|
import { Panel } from 'rsuite';
|
||
|
|
||
|
const boxStyle = {
|
||
|
margin: '50px 10px',
|
||
|
};
|
||
|
|
||
|
export default function Dashboard() {
|
||
|
return (
|
||
|
<Panel header={<h3>Dashboard</h3>} bordered style={boxStyle}>
|
||
|
<p>This is just experimenting with stuff.</p>
|
||
|
</Panel>
|
||
|
);
|
||
|
}
|