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