Files
standardnotes-app-web/app/assets/javascripts/Components/TitleBar/Title.tsx
2022-05-30 12:42:52 +05:30

12 lines
250 B
TypeScript

import { FunctionComponent } from 'react'
type Props = {
className?: string
}
const Title: FunctionComponent<Props> = ({ children, className }) => {
return <div className={`sn-title ${className ?? ''}`}>{children}</div>
}
export default Title