import { ReactNode, Ref } from "react"; import "./Tabbar.css"; import { getCN, randomId } from "../utils"; function Tabbar({ children, ios = false, ...props }: { [x: string]: any }) { return (
{children}
); } export default Tabbar;