From 3c020236bd95ba485cc7cfb8b11e5972c49bb7b5 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Mon, 22 May 2023 16:54:34 +0700 Subject: delete animation on load --- src/components/ui/AnimateOnLoad.jsx | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/components/ui/AnimateOnLoad.jsx (limited to 'src/components/ui/AnimateOnLoad.jsx') diff --git a/src/components/ui/AnimateOnLoad.jsx b/src/components/ui/AnimateOnLoad.jsx deleted file mode 100644 index fb9919e1..00000000 --- a/src/components/ui/AnimateOnLoad.jsx +++ /dev/null @@ -1,25 +0,0 @@ -import classNames from 'classnames' -import { motion } from 'framer-motion' - -/** - * Animate On Load - * @param {object} props - * @param {string} props.className - Container class - */ -const AnimateOnLoad = (props) => { - const { className: propsClassName, children } = props - - const combinedClassName = classNames(propsClassName) - - return ( - - {children} - - ) -} - -export default AnimateOnLoad -- cgit v1.2.3