Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pratyush1718 committed Apr 29, 2024
1 parent 97acd40 commit 28108ab
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions admin-portal-frontend/src/app/components/VerticalNavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,18 @@ import HomeComponent from './HomeComponent';
import React, { ReactNode } from 'react';
import Accordion from 'react-bootstrap/Accordion';
import 'bootstrap/dist/css/bootstrap.css';
import { Card, useAccordionButton } from 'react-bootstrap';
import { Card } from 'react-bootstrap';
import GpComponent from './GPComponent';
import SearchComponent from './SearchComponent';


const VerticalNavBar: React.FC = () => {

interface CustomAccordionProps {
eventKey: string;
children: ReactNode;
}

const CustomAccordion = ({ eventKey, children }: CustomAccordionProps) => {
const CustomAccordion = ({ children }: CustomAccordionProps) => {
//const decoratedOnClick = useAccordionButton(eventKey, () => {});

return (
Expand Down

0 comments on commit 28108ab

Please sign in to comment.