From 05ccf76dbbb54e52ae81a469f91b3660057058dc Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 01:18:16 +0300 Subject: style: install eslint --- src/components/Button.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/components/Button.tsx') diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 55ceda6..5fd69b2 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -7,14 +7,16 @@ interface Props { const styles = { - contained: "bg-black text-white", - outlined: "border-2 border-black" + contained: 'bg-black text-white', + outlined: 'border-2 border-black', }; const Button: React.FC = ({ children, variant = 'contained' }) => { - return ( - ); -- cgit v1.2.3