mirror of
https://github.com/idanoo/autobrr
synced 2025-07-27 02:39:13 +00:00
16 lines
No EOL
416 B
TypeScript
16 lines
No EOL
416 B
TypeScript
/*
|
|
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import { Stats } from "./Stats";
|
|
import { ActivityTable } from "./ActivityTable";
|
|
|
|
export const Dashboard = () => (
|
|
<main className="py-10">
|
|
<div className="max-w-screen-xl mx-auto pb-6 px-4 sm:px-6 lg:pb-16 lg:px-8">
|
|
<Stats />
|
|
<ActivityTable />
|
|
</div>
|
|
</main>
|
|
); |