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

12 lines
252 B
TypeScript

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