Sha256: 4a896697cabb05e8f0a73b27b0e65701332800420bfe4d2f48dc6ef6df0881ff
Contents?: true
Size: 972 Bytes
Versions: 8
Compression:
Stored size: 972 Bytes
Contents
import React from "react" import {Table} from "../../" function TableContainer() { return ( <Table 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 TableContainer;
Version data entries
8 entries across 8 versions & 1 rubygems