Change about default export
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jared He 2022-09-12 10:24:29 -04:00
parent 8465b5be44
commit cbc7be0661
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import React from "react";
import styles from "./About.module.css";
export default function About() {
export function About() {
return (
<div className={styles.aboutWrapper}>
<AngleDecoration isBottom={false} />

View File

@ -11,7 +11,7 @@ import {
import { sectionsData } from "data/routes";
import React from "react";
import About from "@/components/About";
import { About } from "@/components/About";
import { PieChart } from "@/components/PieChart";
import { QuotationCarousel } from "@/components/QuotationCarousel";
import { Sections } from "@/components/Sections";