Blank Component for React App. This is useful for mock, wireframing and creating a skeleton page.
yarn add @gitobi/react-blank-component
npm install @gitobi/react-blank-component --save
import React, { Component } from 'react';
import BlankComponent from '@gitobi/react-blank-component';
class Home extends Component {
render() {
return (
<BlankComponent />
);
}
}
export default Home;yarn buildgit add .git commit -mgit tag -a v1.0.0 -m 'v1.0.0 release'git push origin v1.0.0npm publish --access=public
MIT