aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/alert.tsx
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-11 23:38:51 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-05-14 16:35:13 +0800
commitb74957acdfc8d67d154bcb4698acd7575db7cc47 (patch)
tree3f33c2faac3b55e52098ab0b5b9883a9b62f5aee /packages/website/ts/components/ui/alert.tsx
parent6aed4fb1ae27dabed027c855f2cbdc0bfb4f3b6b (diff)
downloaddexon-0x-contracts-b74957acdfc8d67d154bcb4698acd7575db7cc47.tar
dexon-0x-contracts-b74957acdfc8d67d154bcb4698acd7575db7cc47.tar.gz
dexon-0x-contracts-b74957acdfc8d67d154bcb4698acd7575db7cc47.tar.bz2
dexon-0x-contracts-b74957acdfc8d67d154bcb4698acd7575db7cc47.tar.lz
dexon-0x-contracts-b74957acdfc8d67d154bcb4698acd7575db7cc47.tar.xz
dexon-0x-contracts-b74957acdfc8d67d154bcb4698acd7575db7cc47.tar.zst
dexon-0x-contracts-b74957acdfc8d67d154bcb4698acd7575db7cc47.zip
Add missing type definitions
Diffstat (limited to 'packages/website/ts/components/ui/alert.tsx')
-rw-r--r--packages/website/ts/components/ui/alert.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/components/ui/alert.tsx b/packages/website/ts/components/ui/alert.tsx
index f81939255..b571d8c1c 100644
--- a/packages/website/ts/components/ui/alert.tsx
+++ b/packages/website/ts/components/ui/alert.tsx
@@ -7,7 +7,7 @@ interface AlertProps {
message: string | React.ReactNode;
}
-export function Alert(props: AlertProps) {
+export const Alert = (props: AlertProps) => {
const isAlert = props.type === AlertTypes.ERROR;
const errMsgStyles = {
background: isAlert ? colors.red200 : colors.lightestGreen,
@@ -22,4 +22,4 @@ export function Alert(props: AlertProps) {
{props.message}
</div>
);
-}
+};