bpk-component-content-container
v6.1.2
Published
Backpack content container component.
Downloads
528
Maintainers
Keywords
Readme
bpk-component-content-container
Backpack content container component.
Installation
npm install bpk-component-content-container --save-dev
Usage
import React from 'react';
import BpkContentContainer from 'bpk-component-content-container';
export default () => (
<BpkContentContainer>
<h1>My heading</h1>
<p>My paragraph.</p>
</BpkContentContainer>
);
Props
| Property | PropType | Required | Default Value | | ----------------------- | -------------------------------------------- | -------- | ------------- | | children | - | false | null | | dangerouslySetInnerHTML | { __html: string } | false | null | | tagName | 'article', 'aside', 'div', 'main', 'section' | false | 'div' | | bareHtml | bool | false | false | | alternate | bool | false | false |