mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-06-18 23:52:35 +00:00
18 lines
364 B
TypeScript
18 lines
364 B
TypeScript
import React from 'react';
|
|
import './App.css';
|
|
import {Leaderboard} from "./components/Leaderboard";
|
|
|
|
function App() {
|
|
// @ts-ignore
|
|
const serverId: bigint = window.serverId
|
|
return (
|
|
<>
|
|
<div className="bg-slate-700 bg-cover min-h-screen">
|
|
<Leaderboard serverId={serverId}/>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default App;
|