You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
301 B

  1. import {createTopicPage} from "./TopicPage";
  2. export default {
  3. title: 'Pages/Topic Page',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. argTypes: {
  8. },
  9. }
  10. const Template = ({...args}) => {
  11. return createTopicPage({...args});
  12. };
  13. export const TopicPage = Template.bind({});
  14. TopicPage.args = {};