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