import { HeadingCommon } from "src/components/common" import s from './NotificationHeading.module.scss' interface NotificationHeadingProps { children?: React.ReactNode, heading?: string, } const NotificationHeading = ({heading = "NOTIFICATIONS"}: NotificationHeadingProps) => { return (
{heading}
) } export default NotificationHeading