file upload develop
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { useTranslations } from 'next-intl';
|
||||
|
||||
export default function PageTitle({ title }: { title: string }) {
|
||||
const t = useTranslations('Global');
|
||||
return (
|
||||
<div className="page-title">
|
||||
<h1>
|
||||
{t(title)}
|
||||
</h1>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user