Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 41054d0

Browse files
formatting
1 parent 94dafd4 commit 41054d0

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/components/Notifications.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ import {
77
} from '@material-ui/core';
88
import { amber, blue, green, red } from '@material-ui/core/colors';
99
import classNames from 'classnames';
10-
import React, {ComponentType, createElement, ReactNode, StatelessComponent} from 'react';
10+
import React, {
11+
ComponentType,
12+
createElement,
13+
ReactNode,
14+
StatelessComponent,
15+
} from 'react';
1116
import { Observable as obs } from 'rxjs';
1217
import uuid from 'uuid';
1318
import { CheckCircle, Close, Error, Info, Warning } from '../components/Icons';
@@ -195,7 +200,9 @@ const Notification: ComponentType<NotificationProps> = withStyles(styles)(
195200
),
196201
);
197202

198-
const Notifications: StatelessComponent<{ notifications: NotificationProps[] }> = ({ notifications }) => (
203+
const Notifications: StatelessComponent<{
204+
notifications: NotificationProps[];
205+
}> = ({ notifications }) => (
199206
<div>
200207
{notifications.map(notification => (
201208
<Notification key={notification.messageId} {...notification} />

0 commit comments

Comments
 (0)