如何在 React 的 styleguidist 的 .md 文件中呈现两个组件?
How to render two components inside a .md file for styleguidist in React?
我正在尝试使用自定义组件创建样式指南。我需要能够在彼此内部插入组件,但不确定如何在 .md 文件中执行此操作。我有一个列表和列表项。我想在列表中显示列表项。在 styleguidist 显示中出现此错误。这里有一些很好的例子,但 none 说明了我正在努力完成的事情 -- https://github.com/styleguidist/react-styleguidist/tree/master/examples/basic/src/components
SyntaxError: Unexpected token (3:0)
1 : import ListItem from './ListItem'
2 :
3 :
List.tsx
import React, { Component } from 'react'
import './List.css'
export interface IListProps {
/** Type of button to display */
font: string;
disabled: boolean;
mtmClass: string;
link: boolean;
}
class List extends Component<IListProps> {
render() {
const { children } = this.props
return <ul className={'mtm-list'}>{children}</ul>
}
}
export default List
List.md
```js
import ListItem from './ListItem'
<List>
<ListItem>
Content in a List
</ListItem>
</List>
ListItem.tsx
import React, { Component } from 'react'
import './List.css'
export interface IListItemProps {
/** Type of button to display */
font: string;
disabled: boolean;
mtmClass: string;
link: boolean;
}
class ListItem extends Component<IListItemProps> {
render() {
const { children } = this.props
return <li className={'mtm-list-item'}>{children}</li>
}
}
export default ListItem
也许MDX有帮助。
"MDX is an authorable format that lets you seamlessly write JSX in your Markdown documents"
yarn add mdx.macro
将 List.md 重命名为 List.mdx,现在您可以像这样
import ListItem from './ListItem'
#Header
<List>
<ListItem>
*content*
</ListItem>
</List>
我不得不将 .md 更改为这种格式并且它起作用了,特别是添加了分号。
```jsx
import React from 'react'
import Button from 'rsg-example/components/Button'
import Placeholder from 'rsg-example/components/Placeholder'
;<Button>
<Placeholder />
</Button>
```
我正在尝试使用自定义组件创建样式指南。我需要能够在彼此内部插入组件,但不确定如何在 .md 文件中执行此操作。我有一个列表和列表项。我想在列表中显示列表项。在 styleguidist 显示中出现此错误。这里有一些很好的例子,但 none 说明了我正在努力完成的事情 -- https://github.com/styleguidist/react-styleguidist/tree/master/examples/basic/src/components
SyntaxError: Unexpected token (3:0) 1 : import ListItem from './ListItem' 2 : 3 :
List.tsx
import React, { Component } from 'react'
import './List.css'
export interface IListProps {
/** Type of button to display */
font: string;
disabled: boolean;
mtmClass: string;
link: boolean;
}
class List extends Component<IListProps> {
render() {
const { children } = this.props
return <ul className={'mtm-list'}>{children}</ul>
}
}
export default List
List.md
```js
import ListItem from './ListItem'
<List>
<ListItem>
Content in a List
</ListItem>
</List>
ListItem.tsx
import React, { Component } from 'react'
import './List.css'
export interface IListItemProps {
/** Type of button to display */
font: string;
disabled: boolean;
mtmClass: string;
link: boolean;
}
class ListItem extends Component<IListItemProps> {
render() {
const { children } = this.props
return <li className={'mtm-list-item'}>{children}</li>
}
}
export default ListItem
也许MDX有帮助。
"MDX is an authorable format that lets you seamlessly write JSX in your Markdown documents"
yarn add mdx.macro
将 List.md 重命名为 List.mdx,现在您可以像这样
import ListItem from './ListItem'
#Header
<List>
<ListItem>
*content*
</ListItem>
</List>
我不得不将 .md 更改为这种格式并且它起作用了,特别是添加了分号。
```jsx
import React from 'react'
import Button from 'rsg-example/components/Button'
import Placeholder from 'rsg-example/components/Placeholder'
;<Button>
<Placeholder />
</Button>
```