12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
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 />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Index
|