Display Transcript Title

This commit is contained in:
Koper
2023-10-13 15:12:05 +01:00
parent c5297be924
commit 10a86fb036
3 changed files with 26 additions and 74 deletions

View File

@@ -0,0 +1,13 @@
type TranscriptTitle = {
title: string;
};
const TranscriptTitle = (props: TranscriptTitle) => {
return (
<h2 className="text-2xl lg:text-4xl font-extrabold text-center mb-4">
{props.title}
</h2>
);
};
export default TranscriptTitle;