<CopyrightNotice />
)
React Component for Copyright Notice (
Use this component to put a semantic copyright notice on a page with React.
Getting started
Installation
npm install react-copyright-notice-component --save# or yarn add react-copyright-notice-component
Usage
For a minimal/generic copyright notice, assuming the current year:
<CopyrightNotice></CopyrightNotice>
© 2019
Give it more to work with by specifying a copyright holder:
<CopyrightNotice ="Michael Bluth"></CopyrightNotice>
© 2019 Michael Bluth
...and/or specify the year:
<CopyrightNotice ="Michael Bluth" ="2003"></CopyrightNotice>
© 2003 Michael Bluth
Running the tests
npm test# or, for a coverage report: npm run test:coverage
License
This project is licensed under the MIT License. See the LICENSE file for details.