mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-13 12:00:01 -04:00
19 lines
522 B
TypeScript
19 lines
522 B
TypeScript
import { motion } from "framer-motion";
|
|
import { tabContentVariant, settingsPageVariant } from "./Variants";
|
|
|
|
const Customization = ({ id, active }) => (
|
|
<motion.div
|
|
role="tabpanel"
|
|
id={id}
|
|
className="tab-content"
|
|
variants={tabContentVariant}
|
|
animate={active ? "active" : "inactive"}
|
|
initial="inactive"
|
|
>
|
|
<motion.div variants={settingsPageVariant} className="content-card">
|
|
<h1>Customization</h1>
|
|
</motion.div>
|
|
</motion.div>
|
|
);
|
|
|
|
export default Customization;
|