0.0.1 • Published 4 years ago

bcfirebaseauth v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Example app with Storybook and TypeScript.

This example shows a default set up of Storybook plus TypeScript, using @storybook/preset-typescript. Also included in the example is a custom component included in both Storybook and the Next.js application.

How to use

Using create-next-app

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example with-storybook-typescript with-storybook-app
# or
yarn create next-app --example with-storybook-typescript with-storybook-app

Download manually

Download the example:

curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-storybook-typescript
cd with-storybook-typescript

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Run Storybook

npm run storybook
# or
yarn storybook

Build Static Storybook

npm run build-storybook
# or
yarn build-storybook

You can use Vercel to deploy Storybook. Specify storybook-static as the output directory.