import React, { FC } from 'react' import { Flex, FlexProps, Heading, HeadingProps } from '@chakra-ui/react' export type NotificationsHeaderProps = {} & FlexProps export const NotificationsHeader: FC = ({ ...props }) => { return } export type NotificationsTitleProps = {} & HeadingProps export const NotificationsTitle: FC = ({ children = 'Notifiche', ...props }) => { return }