remade frontend
This commit is contained in:
parent
02281120dc
commit
36d99b1e35
45 changed files with 1290 additions and 4979 deletions
12
frontend/src/index.tsx
Normal file
12
frontend/src/index.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import ServerList from "./Components/ServerList/ServerList"
|
||||
|
||||
const Index = () => {
|
||||
return (
|
||||
<div style={{ width: "100%", padding: "20px", display: "flex", flexDirection: "column", alignItems: "center" }}>
|
||||
<h1>Available Servers</h1>
|
||||
<ServerList servers={[{ name: "test", online: false, linkTo: "" }, { name: "test", online: false, linkTo: "" }, { name: "test", online: false, linkTo: "" }, { name: "test", online: false, linkTo: "" },]} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Index
|
||||
Loading…
Add table
Add a link
Reference in a new issue