mahdi 2 years ago
parent 50fb08a4dd
commit 38c1e0cadf
  1. 2
      src/App.js
  2. 9
      src/components/UserProfileInfo/index.js

@ -141,7 +141,7 @@ function App() {
{/* <TimeLineComponent /> */} {/* <TimeLineComponent /> */}
{/* <CardTrelloDesign /> */} {/* <CardTrelloDesign /> */}
{/* <ReligiousTimes /> */} {/* <ReligiousTimes /> */}
{/* <DistributedData /> */} <DistributedData />
{/* <CardDesign1 /> */} {/* <CardDesign1 /> */}
{/* <CardDesign2 /> */} {/* <CardDesign2 /> */}
{/* <LeafletMap /> */} {/* <LeafletMap /> */}

@ -1,11 +1,14 @@
import React from "react"; import React from "react";
import DistributedData from "../DistributedData"; import DistributedData from "../DistributedData";
import ProfileInfo from "../ProfileInfo";
import DateTime from "../DateTime";
const UserProfileInfo = () => { const UserProfileInfo = () => {
return ( return (
<div> <DistributedData
<DistributedData items={} /> items={[[{ name: <DateTime /> }, { name: <ProfileInfo /> }]]}
</div> />
); );
}; };

Loading…
Cancel
Save