import { GameState } from "../../../../game/nlcore/common/game"; import React from "react"; export type Notification = { message: string; id: string; }; export type PlayerNotificationProps = { gameState: GameState; }; export type NotificationsProps = { children: React.ReactNode; } & React.HTMLAttributes; export type NotificationProps = React.PropsWithChildren<{ notification: Notification; }> & React.HTMLAttributes; export interface INotificationsProps { notifications: Notification[]; }