Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
ngocnhan-tran1996 committed Jul 23, 2024
1 parent d606035 commit d84cc2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export default function App() {
<Section title="INFORMATION" divideClassName="border border-primary border-3 opacity-50" properties={informationData} />

<Section title="WORK EXPERIENCE" divideClassName="border border-black border-3 opacity-75" properties={workExperienceData} />

<Section title="SKILLS" divideClassName="border border-secondary border-3 opacity-75" properties={skillsData} />

<Section title="CERTIFICATIONS" divideClassName="border border-info border-3 opacity-75" properties={certificationData} />

<Section title="EDUCATION" divideClassName="border border-dark-subtle border-3 opacity-50" properties={educationData} />
Expand Down
2 changes: 1 addition & 1 deletion src/Section.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Fragment } from 'react';

export default function Section({ title, divideClassName, properties }: { title:string, divideClassName:string, properties: SectionProperty[] }) {
export default function Section({ title, divideClassName, properties }: { title: string, divideClassName: string, properties: SectionProperty[] }) {

var data = properties.map(
property =>
Expand Down

0 comments on commit d84cc2c

Please sign in to comment.