mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
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;
|