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 3349566 commit 0189887Copy full SHA for 0189887
packages/cursorless-org/src/pages/component-sheet.tsx
@@ -83,7 +83,15 @@ export async function getStaticProps() {
83
return { props: { data, bodyClasses: cheatsheetBodyClasses } };
84
}
85
86
-export function App({ data }: { data: TestCaseFixture[] }) {
+export type TestCaseComponentProps = TestCaseFixture & {
87
+ filename: string;
88
+ raw: TestCaseFixture;
89
+ before: string;
90
+ during: string;
91
+ after: string;
92
+};
93
+
94
+export function App({ data }: { data: TestCaseComponentProps[] }) {
95
return (
96
<>
97
<Head>
0 commit comments