4
0
forked from crowetic/commerce

Added back some required React imports

This commit is contained in:
Luis Alvarez 2020-10-01 21:35:35 -05:00
parent a1dea9f846
commit f2108ca97f
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import cn from 'classnames'
import { ButtonHTMLAttributes } from 'react'
import React, { ButtonHTMLAttributes } from 'react'
import s from './Button.module.css'
interface Props extends ButtonHTMLAttributes<HTMLButtonElement> {

View File

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

View File

@ -1,4 +1,4 @@
import { FC } from 'react'
import React, { FC } from 'react'
export interface UIState {
displaySidebar: boolean