From 9f8277ef65a69a6db31adb5e9c2999f6cb1d1b62 Mon Sep 17 00:00:00 2001 From: mg901 Date: Sun, 13 Jan 2019 08:34:17 +0300 Subject: [PATCH] fix(flow): fix imported types --- src/constants.js | 2 +- src/mocks.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants.js b/src/constants.js index 5edc67f4..0d9e04fb 100644 --- a/src/constants.js +++ b/src/constants.js @@ -1,6 +1,6 @@ // @flow -import { type BreakpointsMap, ThemeWithBreakpoints } from './models'; +import type { BreakpointsMap, ThemeWithBreakpoints } from './models'; export const defaultBreaks: BreakpointsMap = { phone: '576px', diff --git a/src/mocks.js b/src/mocks.js index 2826790b..baffad1e 100644 --- a/src/mocks.js +++ b/src/mocks.js @@ -1,6 +1,6 @@ // @flow -import { type BreakpointsMap, ThemeWithBreakpoints } from './models'; +import type { BreakpointsMap, ThemeWithBreakpoints } from './models'; const customBreaks: BreakpointsMap = { xs: '576px',