Backpack content container component.
npm install bpk-component-content-container --save-dev
import React from 'react';
import BpkContentContainer from 'bpk-component-content-container';
export default () => (
<BpkContentContainer>
<h1>My heading</h1>
<p>My paragraph.</p>
</BpkContentContainer>
);
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 |