From fa6f3d619e6051d508d9f40c601f77f9b05e1784 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Sun, 1 Jan 2023 20:09:08 -0500 Subject: Remove react UI --- paste-ui/src/stateExample.js | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 paste-ui/src/stateExample.js (limited to 'paste-ui/src/stateExample.js') diff --git a/paste-ui/src/stateExample.js b/paste-ui/src/stateExample.js deleted file mode 100644 index 91fee18..0000000 --- a/paste-ui/src/stateExample.js +++ /dev/null @@ -1,32 +0,0 @@ -import { useState } from 'react'; -export default function MovingDot() { - const [position, setPosition] = useState({ - x: 0, - y: 0 - }); - return ( -
{ - setPosition({ - x: e.clientX, - y: e.clientY - }); - }} - style={{ - position: 'relative', - width: '100vw', - height: '100vh', - }}> -
-
- ); -} \ No newline at end of file -- cgit v1.2.3