Skip to content

Instantly share code, notes, and snippets.

View tkharuk's full-sized avatar
🐢

Taras Kharuk tkharuk

🐢
View GitHub Profile
let DataContext = React.createContext();
function DataTable({ children }) {
return <section className="data-table">{children}</section>;
}
function DataTableHead({ children }) {
return (
<header className="data-table-head">
<div className="data-table-row">{children}</div>