UNPKG

hotelier-lib

Version:

A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook

11 lines (10 loc) 297 B
import React from "react"; import "./styles.css"; export default function SideBar({ handleOnClick, index, onLogout, email, imageUrl, fullName }: { handleOnClick: any; index?: number; onLogout: any; email: any; imageUrl: any; fullName: any; }): React.JSX.Element;