frontend/src/screens/Dashboard.js

20 lines
423 B
JavaScript

import React from 'react';
import { Panel } from 'rsuite';
import { useAuth } from '../helpers/authContext';
import { NavBar } from '../components';
export default function Dashboard() {
const { authToken } = useAuth();
return (
<>
<NavBar title='Meeting Planner' />
<Panel header={<h3>Dashboard</h3>} bordered >
<p>This is just experimenting with stuff.</p>
<p>{authToken}</p>
</Panel>
</>
);
}