9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { TitleType } from '@/types'
|
|
import React from 'react'
|
|
|
|
export default function Title({text}:TitleType) {
|
|
return (
|
|
<div className='text-primary text-3xl ' >{text}</div>
|
|
)
|
|
}
|