Skip to content
Snippets Groups Projects
index.tsx 280 B
Newer Older

import Navigation from 'components/ui/Navigation';
import './stats.scss';

export default function Tasks() {
    return (
        <div className="stats-page">
            <Navigation />
            <main>
                <h1>Stats</h1>
            </main>
        </div>
    );
}