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