Removed unused React imports

This commit is contained in:
Luis Alvarez
2020-10-01 21:34:08 -05:00
parent 44a41eb3e1
commit a1dea9f846
17 changed files with 13 additions and 21 deletions

View File

@@ -1,6 +1,6 @@
import cn from 'classnames'
import s from './ProductCard.module.css'
import React, { FC } from 'react'
import { FC } from 'react'
import { Heart } from '@components/icon'
interface Props {
className?: string

View File

@@ -1,5 +1,5 @@
import cn from 'classnames'
import React, { FC } from 'react'
import { FC } from 'react'
import s from './ProductGrid.module.css'
import ProductCard from '@components/ProductCard'
interface Props {

View File

@@ -1,5 +1,5 @@
import cn from 'classnames'
import React, { FC } from 'react'
import { FC } from 'react'
import s from './ProductView.module.css'
import { Button } from '@components/ui'
import { Swatch } from '@components/product'

View File

@@ -1,5 +1,5 @@
import cn from 'classnames'
import React, { FC } from 'react'
import { FC } from 'react'
import s from './Swatch.module.css'
import { Colors } from '@components/ui/types'