Files
automatisch/packages/web/src/components/PageTitle/index.jsx
2024-07-11 08:54:32 +01:00

7 lines
201 B
JavaScript

import * as React from 'react';
import Typography from '@mui/material/Typography';
export default function PageTitle(props) {
return <Typography variant="h3" data-test="page-title" {...props} />;
}