File size: 405 Bytes
5786921 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { Typography } from "@mui/material";
import Huggingface from "./huggingface/huggingface";
import { SectionBox } from "./boxes";
export default function ExampleComponents() {
return (
<>
<SectionBox>
<Typography component="h2" variant="h3" sx={{ textAlign: "center" }}>
Example Components
</Typography>
</SectionBox>
<Huggingface />
</>
);
}
|