You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
666 B

import React from "react";
import DistributedData from "../DistributedData";
import ProfileInfo from "../ProfileInfo";
import DateTime from "../DateTime";
const UserProfileInfo = () => {
return (
<div className="flex flex-row items-center bg-red-50 w-fit">
<DateTime />{" "}
<div
className="w-0.5 bg-[#9DACD344] mx-2"
style={{ height: "54px" }}
></div>
<ProfileInfo />
</div>
);
};
export default UserProfileInfo;
// <DistributedData
// items={[
// [
// {
// name: <DateTime />,
// number: null,
// },
// { name: <ProfileInfo />, number: null },
// ],
// ]}
// />