Skip to content

Commit 65c79c7

Browse files
chore: update contributing guide for storbook csf 3.0
1 parent 608aeba commit 65c79c7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,13 +267,13 @@ Below is an example of a basic Storybook file:
267267
```js
268268
import "./header.js";
269269
270-
export default {
270+
const meta = {
271271
title: "Components/Header",
272272
};
273273
274-
const Template = () => "<app-header></app-header>";
274+
export default meta;
275275
276-
export const Primary = Template.bind({});
276+
export const Primary = () => "<app-header></app-header>";
277277
```
278278
279279
#### Content as Data

0 commit comments

Comments
 (0)