You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bellnotification.ts 158B

123456
  1. import { Dispatch, SetStateAction } from 'react'
  2. export interface BellNotificationProps {
  3. open: boolean,
  4. setOpen: Dispatch<SetStateAction<boolean>>
  5. }