Skip to content

Commit

Permalink
Update Layout.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
GregdTd authored Dec 10, 2023
1 parent a299f44 commit 3d7fcf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/styles/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from 'styled-components'
import { Pages, PagesTitles } from '../utils/types'
import { Colors } from './Colors'

export const SectionWrapper: React.FC<{ id: Pages; children?: React.ReactNode; className?: string }> = ({ title, id, children, className }) => {
export const SectionWrapper: React.FC<{ id: Pages; children?: React.ReactNode; className?: string }> = ({ id, children, className }) => {
return (
<Wrapper>
<Section id={id} className={className}>
Expand Down

0 comments on commit 3d7fcf0

Please sign in to comment.