Skip to content

Commit

Permalink
✨ add Nate's component (temporary)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oculux314 committed Jul 17, 2024
1 parent 782eb61 commit d505e76
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions next/app/test/nate/mycomponent/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import NateComponent from "@/components/dev/NateComponent";

export default function MyComponent() {
return <NateComponent />;
}
7 changes: 7 additions & 0 deletions next/components/dev/NateComponent.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function NateComponent() {
return (
<div>
<h1>Nate's Component</h1>
</div>
);
}

0 comments on commit d505e76

Please sign in to comment.