2021-12-29 13:33:36 +08:00
|
|
|
---
|
|
|
|
description: NoneBot Store
|
|
|
|
hide_table_of_contents: true
|
|
|
|
---
|
|
|
|
|
|
|
|
import Tabs from "@theme/Tabs";
|
|
|
|
import TabItem from "@theme/TabItem";
|
|
|
|
|
|
|
|
import Driver from "../components/Driver";
|
|
|
|
import Adapter from "../components/Adapter";
|
|
|
|
import Plugin from "../components/Plugin";
|
|
|
|
import Bot from "../components/Bot";
|
|
|
|
|
|
|
|
# 商店
|
|
|
|
|
|
|
|
<div className="w-full border rounded shadow">
|
2021-12-30 16:05:05 +08:00
|
|
|
<Tabs defaultValue="plugin" className="justify-center font-light">
|
2021-12-29 13:33:36 +08:00
|
|
|
<TabItem value="driver" label="驱动器">
|
|
|
|
<Driver />
|
|
|
|
</TabItem>
|
|
|
|
<TabItem value="adapter" label="适配器">
|
|
|
|
<Adapter />
|
|
|
|
</TabItem>
|
|
|
|
<TabItem value="plugin" label="插件">
|
|
|
|
<Plugin />
|
|
|
|
</TabItem>
|
|
|
|
<TabItem value="bot" label="机器人">
|
|
|
|
<Bot />
|
|
|
|
</TabItem>
|
|
|
|
</Tabs>
|
|
|
|
</div>
|