A snippet of markdown to put selected chunks of text to separate tabs

import {Tabs} from 'antd';
const TabPane = Tabs.TabPane;

........

<Tabs defaultActiveKey="1">
<TabPane tab="Tab 1" key="1">

The *first* line.

The second line.
</TabPane>
<TabPane tab="Tab 2" disabled key="2">
Disabled tab.
</TabPane>
<TabPane tab="Tab 3" key="3">

Another line.

```
cd my-project
```

</TabPane>
</Tabs>

Which will produce:

The first line.

The second line.