Skip to content

Commit

Permalink
Merge pull request #99 from UoaWDCC/053_krish_component
Browse files Browse the repository at this point in the history
053 Krish Component
  • Loading branch information
kk7-py authored Aug 8, 2024
2 parents 7cb84c7 + ea52186 commit 7d1a642
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions next/app/test/krish/mycomponent/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import KrishComponent from "@/components/dev/KrishComponent";

export default function MyComponent() {
return <KrishComponent />;
}
9 changes: 9 additions & 0 deletions next/components/dev/KrishComponent.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
"use client";

import { useState } from "react";

export default function KrishComponent() {
const [state, setState] = useState(null);

return <div>Krish</div>;
}

0 comments on commit 7d1a642

Please sign in to comment.