Update App version to 0.1.1

Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
This commit is contained in:
luckfox-eng29
2026-02-05 11:28:14 +08:00
parent 5e17c52afc
commit 9a4e604c61
289 changed files with 23077 additions and 12474 deletions

View File

@@ -0,0 +1,21 @@
import React from "react";
import SideTabs from "@components/Sidebar/SideTabs";
import DeviceFilePage from "@/layout/components_side/SharedFolders/DeviceFilePage";
import SDFilePage from "@/layout/components_side/SharedFolders/SDFilePage";
const SharedFolders: React.FC = () => {
return (
<SideTabs
tab1Label="KVM Storage"
tab2Label="MicroSD Card"
tab1Content={<DeviceFilePage />}
tab2Content={<SDFilePage />}
defaultActiveKey="1"
/>
);
};
export default SharedFolders;