Skip to content

Instantly share code, notes, and snippets.

@jonathasborges1
Created February 10, 2023 20:49
Show Gist options
  • Save jonathasborges1/493a10aa2111c2383b9c3e44c6190f5d to your computer and use it in GitHub Desktop.
Save jonathasborges1/493a10aa2111c2383b9c3e44c6190f5d to your computer and use it in GitHub Desktop.
Exemplo default de componente React usando arrowFunctions
import React from 'react';
interface Props {
children?: React.ReactNode;
}
const Component: React.FC<Props> = ({ children, ...props }) => {
return (
<>{children}</>
)
}
export default Component
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment