From da61ac0b8396ae9acea9a921f23c1320cf0b40b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Zomer?= Date: Mon, 8 Jul 2019 15:04:00 -0300 Subject: [PATCH] Fix component name Component name should be PageLoading, not PageLoding --- src/components/PageLoading/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/PageLoading/index.tsx b/src/components/PageLoading/index.tsx index 0dafd7ad..0fa952cc 100644 --- a/src/components/PageLoading/index.tsx +++ b/src/components/PageLoading/index.tsx @@ -3,9 +3,9 @@ import { Spin } from 'antd'; // loading components from code split // https://umijs.org/plugin/umi-plugin-react.html#dynamicimport -const PageLoding: React.FC = () => ( +const PageLoading: React.FC = () => (
); -export default PageLoding; +export default PageLoading;