import {Theme} from "Frontend/components/theming/Theme"; import {Typography} from "@material-tailwind/react"; export default function ThemePreview({theme}: { theme: Theme }) { return (
{theme.name}
); } /* */