Created
November 9, 2024 14:27
-
-
Save krasnobaev/983a9552065513c5689c9a0b79ef032c to your computer and use it in GitHub Desktop.
tsrfc.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
type Props = { | |
className?: string; | |
children: React.ReactNode; | |
} | |
const FBNumericInput: React.FC<Props> = ({ | |
className, | |
children, | |
}: Props) => { | |
return ( | |
<div className={className || ''}>{children}</div> | |
) | |
} | |
export default FBNumericInput |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment