| 1234567891011121314151617181920212223242526272829 |
- import React from "react";
- import { PostsImgSuit } from "./MyPosts.styled";
-
- const dummyData2 = [
- {
- alt: "Remy Sharp",
- src: "/static/images/avatar/1.jpg",
- title: "Gitara",
- text: (<React.Fragment><PostsImgSuit/> Player.rs</React.Fragment>)
- },
- {
- alt: "Remy Sharp",
- src: "/static/images/avatar/1.jpg",
- title: "Gitara",
- text: (<React.Fragment><PostsImgSuit/> Player.rs</React.Fragment>)
- }
- ]
- import HeaderPopover from "../HeaderPopover/HeaderPopover";
- import { useTranslation } from "react-i18next";
-
- export const MyPosts = () => {
- const {t} = useTranslation();
- return (
- <HeaderPopover
- title={t("header.myOffers")}
- items={dummyData2}
- buttonText={t("header.checkEverything")}/>
- );
- };
|