From 1743d2342039fafdc053e7194a5f9f048adb8287 Mon Sep 17 00:00:00 2001 From: young je Date: Sun, 14 Apr 2019 11:37:52 +0900 Subject: [PATCH] Fix code rule example/typescript/src/App.tsx import {History} to import { History } (#289) --- examples/typescript/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/typescript/src/App.tsx b/examples/typescript/src/App.tsx index eb4d7709..2615013e 100644 --- a/examples/typescript/src/App.tsx +++ b/examples/typescript/src/App.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {History} from 'history' +import { History } from 'history' import { ConnectedRouter } from 'connected-react-router' import routes from './routes'