Sha256: 3c72aa9ab119c2cab4a4c3b5446f3cd945204027d050747f010bb1b68a32c420
Contents?: true
Size: 570 Bytes
Versions: 9
Compression:
Stored size: 570 Bytes
Contents
import React from 'react'; import Tabs from './tabs'; import Box from 'grommet/components/Box'; import Paragraph from 'grommet/components/Paragraph'; export default class Content extends React.Component { render() { return ( <Box className="content-pane" justify="start" align="stretch" pad="none" direction="column" full="vertical"> <Tabs /> <Box justify="start" align="stretch" pad="none" flex="grow"> {this.props.children} </Box> </Box> ); } }
Version data entries
9 entries across 9 versions & 2 rubygems