cspj-application/client/src/components/Pages/Shared/AttackPage.tsx

16 lines
242 B
TypeScript

import { Box } from "@mui/material";
export const AttackPage = ({}) => {
return (
<Box
sx={{
display: "flex",
flexDirection: "column",
justifyContent: "start",
}}
>
asdf
</Box>
);
};