Skip to content

Instantly share code, notes, and snippets.

@krasnobaev
Created November 9, 2024 14:27
Show Gist options
  • Save krasnobaev/983a9552065513c5689c9a0b79ef032c to your computer and use it in GitHub Desktop.
Save krasnobaev/983a9552065513c5689c9a0b79ef032c to your computer and use it in GitHub Desktop.
tsrfc.tsx
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