From 0b89a1a2c54bcda081cc0f35b4cb0391dc6b89bc Mon Sep 17 00:00:00 2001 From: qrg Date: Sun, 8 Dec 2019 21:13:28 +0900 Subject: [PATCH] style: fix lint errors --- src/pages/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ac6a9612..d59a3d74 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,2 +1,5 @@ import React from 'react'; -export default () =>
Hello world!
; + +const Index: React.FC = () =>
Hello world!
; + +export default Index;