/** * @file * @copyright 2020 Aleksej Komarov * @license MIT */ import { Flex } from 'tgui_ch/components'; // CHOMPEdit - tgui_ch export const Notifications = (props) => { const { children } = props; return
{children}
; }; const NotificationsItem = (props) => { const { rightSlot, children } = props; return ( {children} {rightSlot && ( {rightSlot} )} ); }; Notifications.Item = NotificationsItem;