We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac52eba commit 4eae2c1Copy full SHA for 4eae2c1
2 files changed
src/components/Activity.tsx
@@ -1,6 +1,7 @@
1
import * as React from "react";
2
import { Show } from "./Show";
3
4
+// eslint-disable-next-line react-refresh/only-export-components
5
function ActivityPolyfill({ children, mode }: React.PropsWithChildren<{ mode: "visible" | "hidden" }>) {
6
return <Show when={mode === "visible"} mode="visibility">{children}</Show>
7
}
src/components/MatchOption.tsx
@@ -1,3 +1,4 @@
+/* eslint-disable react-refresh/only-export-components */
import { Children, isValidElement } from "react";
import { MatchProps, OptionProps } from "../models";
0 commit comments