From c9d5e3bf0767e96236ea3037a5fb29e13ac56f65 Mon Sep 17 00:00:00 2001 From: Alessandro Cuzzocrea Date: Mon, 12 Feb 2018 21:40:11 +0100 Subject: [PATCH] Fix linter warning ./src/App.js Line 1: 'Component' is defined but never used no-unused-vars --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 84c94a0..f572fad 100644 --- a/src/App.js +++ b/src/App.js @@ -1,4 +1,4 @@ -import React, { Component } from "react"; +import React from "react"; import { Transition } from "react-transition-group"; import consts from "./consts";