```ts
// Button.stories.js | Button.stories.jsx
import React from 'react';
import { Button } from './Button';
export default {
component: Button,
};
// The render function is a framework specific construct to define how the story should render
export const Primary = {
render: () => ,
};
export const Secondary = {
render: () => ,
};
export const Tertiary = {
render: () => ,
};
```