@ladle/react

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

@ladle/react downloads @ladle/react version @ladle/react license

@ladle/reactSimilar Packages:

Npm Package Weekly Downloads Trend

3 Years
🌟 Show real-time usage chart on @ladle/react's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of @ladle/react](https://npm-compare.com/img/npm-trend/THREE_YEARS/@ladle/react.png)](https://npm-compare.com/@ladle/react#timeRange=THREE_YEARS)

Cumulative GitHub Star Trend

🌟 Show GitHub stars trend chart on @ladle/react's README.md, just copy the code below.
## GitHub Stars Trend
[![GitHub Stars Trend of @ladle/react](https://npm-compare.com/img/github-trend/@ladle/react.png)](https://npm-compare.com/@ladle/react)

Stat Detail

Package
Downloads
Stars
Size
Issues
Publish
License
@ladle/react72,0242,9101.29 MB345 months agoMIT

README for @ladle/react

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