Skip to content

Instantly share code, notes, and snippets.

@alexandreservian
Created February 13, 2020 01:47
Show Gist options
  • Save alexandreservian/b76b81b56eb71c04b41b041aeee3ea29 to your computer and use it in GitHub Desktop.
Save alexandreservian/b76b81b56eb71c04b41b041aeee3ea29 to your computer and use it in GitHub Desktop.
Examplo de tabela
const App = () => {
return (
<Table
data={data}
>
{columnDefinition.map(({dataKey, ...restProps}) => (
<Column key={dataKey} dataKey={dataKey} {...restProps} />
))}
</Table>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment