update App.js

master
Your Name 3 years ago
parent 17bee72e5e
commit 3bb36d4199
  1. 5
      src/App.js
  2. BIN
      src/assets/fonts/IRANSansXFaNum-Regular.woff
  3. 7
      src/components/UserProfileInfo/index.js

@ -88,6 +88,7 @@ import TestComponentNew from "./components/TestComponentNew";
import DateRangePicker from "./components/DateRangePicker";
import BoxNextToEachOther from "./components/BoxNextToEachOther";
import ProfileInfo from "./components/ProfileInfo";
import UserProfileInfo from "./components/UserProfileInfo";
function App() {
return (
@ -175,8 +176,8 @@ function App() {
{/* <CustomToast /> */}
{/* <DateRangePicker /> */}
{/* <BoxNextToEachOther /> */}
<ProfileInfo />
{/* <ProfileInfo /> */}
<UserProfileInfo />
{/* <div className="flex">
<SidebarDesign2 className="w-1/5" />
<span className="w-4/5 ">

@ -0,0 +1,7 @@
import React from "react";
const UserProfileInfo = () => {
return <div>UserProfileInfo</div>;
};
export default UserProfileInfo;
Loading…
Cancel
Save