From 1fcdd9f7d859b925bf92265f441655d5522e351c Mon Sep 17 00:00:00 2001 From: Factiven Date: Tue, 11 Apr 2023 23:23:29 +0700 Subject: initial commit --- components/loadingScreen.js | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 components/loadingScreen.js (limited to 'components/loadingScreen.js') diff --git a/components/loadingScreen.js b/components/loadingScreen.js new file mode 100644 index 0000000..5b5621c --- /dev/null +++ b/components/loadingScreen.js @@ -0,0 +1,35 @@ +import React from "react"; +import Typewriter from "typewriter-effect"; + +const LoadingScreen = () => { + return ( +
+
+ qiqi +
+ + { + typewriter + .typeString("Please wait...") + .pauseFor(1500) + .deleteAll() + .start(); + }} + /> + +
+
+
+ ); +}; + +export default LoadingScreen; -- cgit v1.2.3