pages rename

This commit is contained in:
Victor Batischev
2024-02-14 19:32:13 +03:00
parent 0fc8f68c79
commit 140adb0051
22 changed files with 36 additions and 31 deletions

View File

@ -0,0 +1,16 @@
import React from "react";
import { Navigation } from "@components/Navigation/Navigation";
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
import { Footer } from "@components/common/Footer/Footer";
export const Payouts = () => {
return (
<div className="payouts">
<ProfileHeader />
<Navigation />
<div className="container"></div>
<Footer />
</div>
);
};