Initial sections commit
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Jared He 2022-09-01 01:40:05 -04:00
parent b586d52f72
commit d0dc94441d
2 changed files with 26 additions and 0 deletions

View File

26
components/Sections.tsx Normal file
View File

@ -0,0 +1,26 @@
import React from "react";
import styles from "./Sections.module.css";
interface SectionsData {
name: string;
url: string;
}
interface SectionsProps {
data: SectionsData[];
}
export default function Sections({ data }: SectionsProps) {
return (
<section>
<h1>Sections</h1>
{data.map((datum, index) => {
return <div>
<h4></h4>
<a></a>
</div>;
})}
</section>
);
}