6 lines
194 B
TypeScript
6 lines
194 B
TypeScript
|
interface NotificationProps {
|
||
|
message: string;
|
||
|
}
|
||
|
declare function Notification(props: NotificationProps): JSX.Element;
|
||
|
export default Notification;
|
||
|
//# sourceMappingURL=Notification.d.ts.map
|