We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14db6a commit aca1430Copy full SHA for aca1430
src/routes/About/Staff.tsx
@@ -1,7 +1,7 @@
1
import StaffCard from "./StaffCard.tsx";
2
import staff from "./staff-info.json";
3
4
-interface Staff {
+export interface Staff {
5
name: string;
6
preferredLanguage: string;
7
bio: string;
src/routes/About/StaffCard.tsx
@@ -1,3 +1,5 @@
+import { Staff } from "./Staff";
+
interface Props {
staff: Staff;
}
0 commit comments