aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-macro-relay/test/foo.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/bun-macro-relay/test/foo.tsx')
-rw-r--r--packages/bun-macro-relay/test/foo.tsx11
1 files changed, 0 insertions, 11 deletions
diff --git a/packages/bun-macro-relay/test/foo.tsx b/packages/bun-macro-relay/test/foo.tsx
deleted file mode 100644
index fbb54f551..000000000
--- a/packages/bun-macro-relay/test/foo.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-import { graphql } from "react-relay";
-
-export const Foo = () => {
- const definition = graphql`
- query FooOperation {
- foo
- }
- `;
-
- return <div>{definition.operation.name}</div>;
-};