Skip to main content

πŸ—‚οΈ Tabs

To add tabs you need to:

  • import Tabs y TabItem
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
  • use Tabs y TabItem
<Tabs groupId="aggregations">
<TabItem value="mongosh" label="mongosh">

db.authors.aggregate([])

</TabItem>
<TabItem value="atlas" label="Atlas UI">

<Screenshot src="/img/30-simple-queries/atlas-aggregation.png" url="http://cloud.mongodb.com/yourcluster" alt="AtlasUI Showing the available DBs" />

- Open the Aggregation tab
- Select Text entry
- Type in the aggregation pipeline:

[]

</TabItem>
</Tabs>