Sha256: fceab16d7885f75fc9b18804ab138891b1c88cb4a3c2b6c4879517d0c822784d
Contents?: true
Size: 1003 Bytes
Versions: 3
Compression:
Stored size: 1003 Bytes
Contents
import React from "react" import {Table} from "../../" 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
3 entries across 3 versions & 1 rubygems