Skip to content
/ ladle Public
forked from tajo/ladle

🥄 Develop, test and document your React components faster.

License

Notifications You must be signed in to change notification settings

talshani/ladle

 
 

Repository files navigation

Ladle

Ladle is an environment to develop, test and share your React components faster.

Ladle BaseWeb

Quick start

mkdir my-ladle
cd my-ladle
pnpm init
pnpm add @ladle/react react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.stories.tsx
pnpm ladle serve

with yarn

mkdir my-ladle
cd my-ladle
yarn init --yes
yarn add @ladle/react react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.stories.tsx
yarn ladle serve

with npm

mkdir my-ladle
cd my-ladle
npm init --yes
npm install @ladle/react react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.stories.tsx
npx ladle serve

About

🥄 Develop, test and document your React components faster.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 62.9%
  • JavaScript 32.7%
  • CSS 3.3%
  • Other 1.1%