選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

18 行
350 B

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