import React, { FC } from "react"; import { Header } from "../components/Header"; import { UserAvatar } from "./UserAvatar"; interface IProps { fullName: string; presentation: string; picture: string; } export const UserHeader: FC = ({ fullName, presentation, picture }) => { return (
); };