如何将 soucecode 包装在 Storybook mdx 文件中

How to wrap soucecode in Storybook mdx file

在我的 Storybook 文档中,我试图在 div 中显示源代码,主要是为了在网格中显示它。所以我想做类似的事情:

<div>
  ```tsx dark
  return 'source code here' ```
</div>

有没有办法做到这一点?

原来我需要做的是:

<div>

  ```tsx dark
  return 'source code here' ```

</div>