turkmentv_front/components/PageTitle.tsx

9 lines
211 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
interface IProps {
title: string;
}
const PageTitle = ({ title }: IProps) => {
return <h1 className="font-mw_sans font-bold text-black md:text-[32px] text-[24px]">{title}</h1>;
};
export default PageTitle;