11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
import { ElementType } from 'react';
|
|
import { To } from 'react-router-dom';
|
|
|
|
declare module 'react-bootstrap' {
|
|
interface ButtonProps {
|
|
as?: ElementType;
|
|
to?: To;
|
|
htmlFor?: string;
|
|
}
|
|
}
|