Files
frontend/src/core/components/PageTitle.jsx
Amirhossein Mahmoodi f2e199ee8a formatting
2024-08-18 11:11:58 +03:30

19 lines
401 B
JavaScript

"use client";
import { Chip, Divider, Typography } from "@mui/material";
const PageTitle = ({ title }) => {
return (
<Divider>
<Chip
label={
<Typography fontSize={14} fontWeight={500}>
{title}
</Typography>
}
/>
</Divider>
);
};
export default PageTitle;