mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-25 17:45:05 +08:00
32 lines
757 B
Plaintext
32 lines
757 B
Plaintext
---
|
|
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">
|
|
<Tabs defaultValue="plugin" className="justify-center font-light">
|
|
<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>
|