From f2108ca97faf54a18680b608356012700971c450 Mon Sep 17 00:00:00 2001 From: Luis Alvarez Date: Thu, 1 Oct 2020 21:35:35 -0500 Subject: [PATCH] Added back some required React imports --- components/ui/Button/Button.tsx | 2 +- components/ui/Container/Container.tsx | 2 +- components/ui/context.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/ui/Button/Button.tsx b/components/ui/Button/Button.tsx index 2063e6d36..362ade2ae 100644 --- a/components/ui/Button/Button.tsx +++ b/components/ui/Button/Button.tsx @@ -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 { diff --git a/components/ui/Container/Container.tsx b/components/ui/Container/Container.tsx index 43bd91ef5..8fd100a51 100644 --- a/components/ui/Container/Container.tsx +++ b/components/ui/Container/Container.tsx @@ -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 { diff --git a/components/ui/context.tsx b/components/ui/context.tsx index 09dc5c384..9d34eb2b0 100644 --- a/components/ui/context.tsx +++ b/components/ui/context.tsx @@ -1,4 +1,4 @@ -import { FC } from 'react' +import React, { FC } from 'react' export interface UIState { displaySidebar: boolean