Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 591 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 591 Bytes

Ladle

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

Ladle BaseWeb

Quick start

yarn add @ladle/react react react-dom
yarn ladle serve # to start deving
yarn ladle build # to build (when ready to deploy)

Create your first story src/hello.stories.tsx:

export const Button = () => <button>Hello</button>;