12 lines
435 B
TypeScript
12 lines
435 B
TypeScript
import { Paper } from "@mui/material";
|
|
import React from "react";
|
|
|
|
export default function Admin(){
|
|
return (
|
|
<Paper square className='projectScreen-background' sx={{ width: '100%', overflow: 'hidden',backgroundColor:'rgb(13 13 13)' }}>
|
|
<Paper className='projectScreen-background' sx={{ margin:'1%', width: '100%', overflow: 'hidden' }}>
|
|
<h1>hi</h1>
|
|
</Paper>
|
|
</Paper>
|
|
)
|
|
} |