DEPRECATED
This project as moved to the @qc scope. See @qc/react-block.
A React component that renders a div with the implied semantics of representing a block element.
npm install --save qc-react-block
or
yarn add qc-react-block
import React from 'react'
import Block from 'qc-react-block'
import 'qc-react-block/lib/Block.css'
export default function SomeComponent(props) {
return (
<Block className="Some">
<h2>Some Component</h2>
<p>Some component demo'ing the Block component.</p>
</Block>
)
}