diff --git a/src/components/SplashViz/SplashViz.jsx b/src/components/SplashViz/SplashViz.jsx index 395187b383c9..1fc05d892c32 100644 --- a/src/components/SplashViz/SplashViz.jsx +++ b/src/components/SplashViz/SplashViz.jsx @@ -1,37 +1,30 @@ -// Import External Dependencies -import { Component } from "react"; - -// Load Images - // Import Components import Cube from "../Cube/Cube.jsx"; import TextRotator from "../TextRotater/TextRotater.jsx"; import HomeSVG from "./SplashVizSVG.mjs"; -export default class SplashViz extends Component { - render() { - return ( -
-

- bundle your - - assets - scripts - images - styles - -

-
- -
- ); - } +export default function SplashViz() { + return ( +
+

+ bundle your + + assets + scripts + images + styles + +

+
+ +
+ ); }