19 lines
444 B
JavaScript
19 lines
444 B
JavaScript
import React from "react";
|
|
|
|
import { Footer } from "@components/Common/Footer/Footer";
|
|
import { Navigation } from "@components/Navigation/Navigation";
|
|
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
|
|
|
import "./payouts.scss";
|
|
|
|
export const Payouts = () => {
|
|
return (
|
|
<div className="payouts">
|
|
<ProfileHeader />
|
|
<Navigation />
|
|
<div className="container"></div>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
};
|