Skip to content

Commit

Permalink
Cloned the files to the local machine
Browse files Browse the repository at this point in the history
  • Loading branch information
alex090890 committed Mar 20, 2024
1 parent 5acedbc commit e8087a9
Show file tree
Hide file tree
Showing 5 changed files with 334 additions and 170 deletions.
3 changes: 1 addition & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "src/index.tsx",
"dependencies": {
"leaflet": "^1.9.4",
"react": "^18.0.0",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"react-leaflet": "^4.2.1",
"react-scripts": "^5.0.0",
Expand All @@ -22,7 +22,8 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
"eject": "react-scripts eject",
"dev": "react-scripts start"
},
"browserslist": [
">0.2%",
Expand Down
4 changes: 2 additions & 2 deletions src/components/AppUkr.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import MyTabs from "./MyTabs";
import Header from "./Header";
import MyTabsUkr from "./MyTabsUkr";

export default function AppUkr() {
return (
<div>
<div className="maincontainer">
<Header />
<MyTabs />
<MyTabsUkr />
<h1>Привіт</h1>
</div>
</div>
Expand Down
38 changes: 38 additions & 0 deletions src/components/MyTabsUkr.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import { Tab, Tabs, TabList, TabPanel } from "react-tabs";
import "react-tabs/style/react-tabs.css";
import Address from "./Address";
import Certificates from "./certificates/Certificates";
import Currentposition from "./Currentposition";
import Social from "./Social";

const MyTabsUkr = () => {
return (
<Tabs>
<TabList>
<Tab>Головна</Tab>
<Tab>Про мене</Tab>
<Tab>Контактні дані</Tab>
<Tab>Мої проекти</Tab>
<Tab>Сертифікати</Tab>
</TabList>

<TabPanel>
<h2>Ласкаво просимо</h2>
</TabPanel>
<TabPanel>
<Social />
</TabPanel>
<TabPanel>
<h2>Наше місцезнаходженн/</h2>
<Currentposition />
<Address />
</TabPanel>
<TabPanel></TabPanel>
<TabPanel>
<Certificates />
</TabPanel>
</Tabs>
);
};

export default MyTabsUkr;
Loading

0 comments on commit e8087a9

Please sign in to comment.