Skip to content

Commit

Permalink
fix eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondhtet committed Sep 16, 2024
1 parent 4bb6911 commit bca4164
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface Props {
setSelectedClass: Dispatch<SetStateAction<InputClass>>;
}

const CreateInvitationPage = (props: Props) => {
export default function CreateInvitationComponent(props : Props) {
const [inputClasses, setInputClasses] = useState<InputClass[]>([]);

useEffect(() => {
Expand Down Expand Up @@ -68,5 +68,3 @@ const CreateInvitationPage = (props: Props) => {
</div>
);
};

export default CreateInvitationPage;

0 comments on commit bca4164

Please sign in to comment.