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 6efd26b commit 9a7b4dfCopy full SHA for 9a7b4df
src/components.tsx
@@ -198,12 +198,12 @@ export const Outlet = () => {
198
199
export interface AnchorProps extends Omit<JSX.AnchorHTMLAttributes<HTMLAnchorElement>, "state"> {
200
href: string;
201
- replace?: boolean;
202
- noScroll?: boolean;
203
- state?: unknown;
204
- inactiveClass?: string;
205
- activeClass?: string;
206
- end?: boolean;
+ replace?: boolean | undefined;
+ noScroll?: boolean | undefined;
+ state?: unknown | undefined;
+ inactiveClass?: string | undefined;
+ activeClass?: string | undefined;
+ end?: boolean | undefined;
207
}
208
export function A(props: AnchorProps) {
209
props = mergeProps({ inactiveClass: "inactive", activeClass: "active" }, props);
0 commit comments