Skip to content

Commit

Permalink
#10 Removing props since they are empty.
Browse files Browse the repository at this point in the history
  • Loading branch information
krckyboy committed Feb 4, 2024
1 parent c1383b7 commit fe24211
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
5 changes: 1 addition & 4 deletions next/src/app/skills/jobs/Jobs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ import styles from './styles.module.scss';
import jobsData from './data';
import JobItem from './job-item/JobItem';

interface Props {
}

const Jobs: FunctionComponent<Props> = () => {
const Jobs: FunctionComponent = () => {
return (
<>
<h2>Work Experience</h2>
Expand Down
5 changes: 1 addition & 4 deletions next/src/app/skills/soft-skills/SoftSkills.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import React, { FunctionComponent } from 'react';

interface Props {
}

const SoftSkills: FunctionComponent<Props> = () => {
const SoftSkills: FunctionComponent = () => {
return (
<>
<h2>Soft Skills</h2>
Expand Down
5 changes: 1 addition & 4 deletions next/src/app/skills/tech-skills/TechSkills.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import React, { FunctionComponent } from 'react';
import Link from 'next/link';

interface Props {
}

const TechSkills: FunctionComponent<Props> = () => {
const TechSkills: FunctionComponent = () => {
return (
<>
<h2>Technical Skills</h2>
Expand Down

0 comments on commit fe24211

Please sign in to comment.