const DeleteUser = `import React from "react"; import { useTheme, Text, Button, Grid, Row } from "@nextui-org/react"; export const DeleteUser = () => { return ( Confirm Are you sure you want to delete this user ?, by doing this, you will not be able to recover the data. ); };`; const UserTwitterCard = `import React from "react"; import { Avatar, Row, Col, Text, Button, Spacer, Grid } from "@nextui-org/react"; export const UserTwitterCard = ({ avatarUrl, avatarProps, css, onClick, ...props }) => { const [following, setFollowing] = React.useState(false); return ( Zoey Lang @zoeylang Full-stack developer, @getnextui lover she/her 🎉 4 Following 97.1K Followers ); };`; const AppJs = `import { Tooltip, Button, Grid, Avatar } from "@nextui-org/react"; import { UserTwitterCard } from "./UserTwitterCard"; import { DeleteUser } from "./DeleteUser"; export default function App() { return ( }> }> ); }`; const react = { '/UserTwitterCard.js': UserTwitterCard, '/DeleteUser.js': DeleteUser, '/App.js': AppJs }; export default { ...react };