Sha256: 747c6fcbc1b99c5433c247c71ce737a7bac0fe233fb648f1a224db31ee86c8b6
Contents?: true
Size: 967 Bytes
Versions: 3
Compression:
Stored size: 967 Bytes
Contents
import React from "react" import {Table} from "../../" function TableDark() { 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 TableDark;
Version data entries
3 entries across 3 versions & 1 rubygems