mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
31 lines
864 B
TypeScript
31 lines
864 B
TypeScript
import { Tab, TabList, TabPanel, TabPanels } from '@chakra-ui/react';
|
|
import { AndroidADBPullInstruction } from '~/components/AndroidADBPullInstruction/AndroidADBPullInstruction';
|
|
import { InstructionsPC } from './InstructionsPC';
|
|
import { InstructionsIOS } from './InstructionsIOS';
|
|
|
|
export function KWMv2AllInstructions() {
|
|
return (
|
|
<>
|
|
<TabList>
|
|
<Tab>安卓</Tab>
|
|
<Tab>iOS</Tab>
|
|
<Tab>Windows</Tab>
|
|
</TabList>
|
|
<TabPanels flex={1} overflow="auto">
|
|
<TabPanel>
|
|
<AndroidADBPullInstruction
|
|
dir="/data/data/cn.kuwo.player/files/mmkv"
|
|
file="cn.kuwo.player.mmkv.defaultconfig"
|
|
/>
|
|
</TabPanel>
|
|
<TabPanel>
|
|
<InstructionsIOS />
|
|
</TabPanel>
|
|
<TabPanel>
|
|
<InstructionsPC />
|
|
</TabPanel>
|
|
</TabPanels>
|
|
</>
|
|
);
|
|
}
|