Comment out ST V3 section

This commit is contained in:
Tuan Dang
2023-11-21 17:32:22 +07:00
parent c37ff79927
commit 4db9a5279f

View File

@@ -2,7 +2,7 @@ import { motion } from "framer-motion";
import {
ServiceTokenSection,
ServiceTokenV3Section
// ServiceTokenV3Section
} from "./components";
export const ServiceTokenTab = () => {
@@ -14,7 +14,7 @@ export const ServiceTokenTab = () => {
animate={{ opacity: 1, translateX: 0 }}
exit={{ opacity: 0, translateX: 30 }}
>
<ServiceTokenV3Section />
{/* <ServiceTokenV3Section /> */}
<ServiceTokenSection />
</motion.div>
);