0.0.1 • Published 9 months ago

public-dashboard v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Public Dashboard

Hi, wellcome to Public Dashboard Package, a simple configurable dashboard

How to use the package?

Install the package:

npm install public-dashboard

Import and enjoy:

import { HelloWorld } from public-dashboard;

const App = () => {
  return (
    <div>
      <HelloWorld />
    </div>
  );
};

Example demo app

Dev Workflow

The recommended workflow is to run TSDX in one terminal:

npm start # or yarn start

This builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.

Then run the demo app in another terminal:

cd example
npm i # or yarn to install dependencies
npm start # or yarn start
0.0.1

9 months ago