import { Tag } from 'antd' import react from 'react' interface IUserPreview{ level: number; username: string; score: string; rubles: string; fio: string; id: number; tg: string; tags: react.ReactNode[]; description: string; logo_url: string; } export const UserPreview: react.FC = (props) => { return
Lvl {props.level} {props.username} {props.score}
{props.rubles}
Id {props.id}
{props.fio}
@{props.tg}
{props.tags}
{props.description}
}