Files
Termix/src/ui/apps/File Manager/FIleManagerTopNavbar.tsx
T

8 lines
224 B
TypeScript
Raw Normal View History

import React from "react";
import { FileManagerTabList } from "./FileManagerTabList.tsx";
export function FIleManagerTopNavbar(props: any): React.ReactElement {
return (
<FileManagerTabList {...props} />
)
}