Sha256: 6c25d82d8f1ecb5a01baa25eafd8f518166f7f5a61d37d2ea15a03ed072cd341
Contents?: true
Size: 1008 Bytes
Versions: 15
Compression:
Stored size: 1008 Bytes
Contents
import React from "react" import Table from "../_table.jsx" function TableContainerDark() { return ( <Table container dark size="md" > <thead> <tr> <th>{`Column 1`}</th> <th>{`Column 2`}</th> <th>{`Column 3`}</th> <th>{`Column 4`}</th> <th>{`Column 5`}</th> </tr> </thead> <tbody> <tr> <td>{`Value 1`}</td> <td>{`Value 2`}</td> <td>{`Value 3`}</td> <td>{`Value 4`}</td> <td>{`Value 5`}</td> </tr> <tr> <td>{`Value 1`}</td> <td>{`Value 2`}</td> <td>{`Value 3`}</td> <td>{`Value 4`}</td> <td>{`Value 5`}</td> </tr> <tr> <td>{`Value 1`}</td> <td>{`Value 2`}</td> <td>{`Value 3`}</td> <td>{`Value 4`}</td> <td>{`Value 5`}</td> </tr> </tbody> </Table> ) } export default TableContainerDark;
Version data entries
15 entries across 15 versions & 1 rubygems