Searched defs:SFC (Results 1 – 5 of 5) sorted by relevance
9 function SFC<T>(props: Record<string, T>) { function
3 interface SFC<P = {}> { interface
14 const RandomComponent: React.SFC = () => { function
16 const CustomButton: React.SFC<CustomButtonProps> = props => <Button {...props} />; function
199 type SFC<P> = StatelessComponent<P>; alias