Files
standardnotes-app-web/app/assets/javascripts/Components/TitleBar/Title.tsx
2022-04-13 22:02:34 +05:30

6 lines
214 B
TypeScript

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