13 lines
213 B
TypeScript
13 lines
213 B
TypeScript
|
|
import { Box, Typography } from "@mui/material";
|
||
|
|
|
||
|
|
function LLMFactoryCard() {
|
||
|
|
return (
|
||
|
|
<Box>
|
||
|
|
<Typography variant="h6" gutterBottom>
|
||
|
|
</Typography>
|
||
|
|
</Box>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default LLMFactoryCard;
|