Skip to content

Commit

Permalink
Make underHeader an arrow function
Browse files Browse the repository at this point in the history
  • Loading branch information
arjxn-py committed Oct 15, 2023
1 parent 2191f01 commit f0f4803
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/UnderHeader/UnderHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import "./UnderHeader.css";
import Feature from "./Feature";

function UnderHeader() {
const UnderHeader = () => {
return (
<div className="curio_whatcurio section__margin" id="curio">
<div className="curio_whatcurio-feature">
Expand Down Expand Up @@ -33,6 +33,6 @@ function UnderHeader() {
</div>
</div>
);
}
};

export default UnderHeader;

0 comments on commit f0f4803

Please sign in to comment.