import React from 'react';
import { Container, Title, List, Item, Picture, Name } from './styles/profiles';
export default function Profiles({ children, ...restProps }) {
return {children};
}
Profiles.Title = function ProfilesTitle({ children, ...restProps }) {
return
{children};
};
Profiles.List = function ProfilesList({ children, ...restProps }) {
return {children}
;
};
Profiles.User = function ProfilesUser({ children, ...restProps }) {
return - {children}
;
};
Profiles.Picture = function ProfilesPicture({ src, ...restProps }) {
return (
);
};
Profiles.Name = function ProfilesName({ children, ...restProps }) {
return {children};
};