Skip to content

Commit

Permalink
[chore] 세미콜론 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdulgi committed Aug 1, 2024
1 parent 001c8df commit fb9f818
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/simpleInformation/contentSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,11 @@ export default function ContentSection({ content }) {
<span
key={index}
style={highlightDynamicStyle}
className={`${index % 2 ? style.highlightAnim : "text-neutral-800"} text-title-m whitespace-pre-wrap`}>
className={`${index % 2 ? style.highlightAnim : "text-neutral-800"} text-title-m whitespace-pre-wrap`}
>
{str}
</span>))}
</span>
))}
</div>

<span className="absoulte top-0 right-0 text-body-s text-neutral-300">
Expand Down
4 changes: 2 additions & 2 deletions src/simpleInformation/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import JSONData from "./contentList.json";
import ContentSection from "./contentSection";

export default function SimpleInformation() {
const contentList = JSONData.content
const contentList = JSONData.content;

return (
<div className="h-[4700px] flex justify-center ">
<div className="w-[1200px] flex flex-col gap-[160px]">
Expand Down

0 comments on commit fb9f818

Please sign in to comment.