Skip to content

Commit

Permalink
A
Browse files Browse the repository at this point in the history
  • Loading branch information
andrlime committed Nov 7, 2024
1 parent 4f60e83 commit 24e524d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 14 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"lint:prettier": "prettier --list-different src"
"lint:prettier": "prettier --list-different src",
"lint:format": "prettier --write src"
},
"dependencies": {
"react": "^18.3.1",
Expand Down
4 changes: 1 addition & 3 deletions src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from "react";
import "./Footer.scss";

interface IFooter {

};
interface IFooter {}

export const Footer: React.FC<IFooter> = () => {
return <div>some words</div>;
Expand Down
4 changes: 1 addition & 3 deletions src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from "react";
import "./Header.scss";

interface IHeader {

};
interface IHeader {}

export const Header: React.FC<IHeader> = () => {
return <div className="header__box">some words</div>;
Expand Down
2 changes: 1 addition & 1 deletion src/components/MainWrapper/MainWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "./MainWrapper.scss";

interface IMainWrapper {
children: React.ReactNode;
};
}

export const MainWrapper: React.FC<IMainWrapper> = ({ children }) => {
return <div className="wrapper__div">{children}</div>;
Expand Down
4 changes: 1 addition & 3 deletions src/components/Navigation/Navigation.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from "react";
import "./Navigation.scss";

interface INavigation {

};
interface INavigation {}

export const Navigation: React.FC<INavigation> = () => {
return <div>some words</div>;
Expand Down
4 changes: 1 addition & 3 deletions src/components/Sections/SampleSection.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from "react";
import "./SampleSection.scss";

interface ISampleSection {

};
interface ISampleSection {}

export const SampleSection: React.FC<ISampleSection> = () => {
return <div>some words</div>;
Expand Down

0 comments on commit 24e524d

Please sign in to comment.