All files / app/components PageTitle.tsx

100% Statements 3/3
100% Branches 0/0
100% Functions 1/1
100% Lines 3/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 1416x 16x   288x                    
import { Typography, TypographyProps } from "@mui/material";
import { theme } from "theme";
 
export default function PageTitle(props: TypographyProps) {
  return (
    <Typography
      {...props}
      className={props.className}
      sx={{ paddingBottom: theme.spacing(2), paddingTop: theme.spacing(2) }}
      variant="h1"
    />
  );
}