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 (