14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
import React from "react";
|
|
|
|
import { Navigation } from "@components/Navigation/Navigation";
|
|
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
|
|
|
export const Payouts = () => {
|
|
return (
|
|
<div className="payouts">
|
|
<ProfileHeader />
|
|
<Navigation />
|
|
</div>
|
|
);
|
|
};
|