This commit is contained in:
2025-12-09 21:33:36 +03:00
commit 894320bd80
2486 changed files with 393202 additions and 0 deletions

10
types/react-bootstrap.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
import { ElementType } from 'react';
import { To } from 'react-router-dom';
declare module 'react-bootstrap' {
interface ButtonProps {
as?: ElementType;
to?: To;
htmlFor?: string;
}
}