import React from "react" import * as antd from "antd" import "./index.less" const Profile = ({ profile, onClickManage, onClickChangeId, onClickDelete, }) => { if (!profile) { return null } return (
{profile._id}

{profile.info.title}

{profile.info.description ?? "No description"}
Manage Delete
) } export default Profile