Skip to content

Instantly share code, notes, and snippets.

@nickjiunchetti
Last active May 26, 2020 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickjiunchetti/e560fb6f1c8ccf51d534124bb48740a0 to your computer and use it in GitHub Desktop.
Save nickjiunchetti/e560fb6f1c8ccf51d534124bb48740a0 to your computer and use it in GitHub Desktop.
Create Col Function
function Col( {children, rows }) {
return (
<div className = {"col-" + rows}>
{ children }
</div>
);
}
return (
<>
<Col rows = {12}>
<Title title = "Monitoramentos" subtitle = "Tabela de Monitoramentos"/>
<Margin bot = {3} />
</Col>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment