When I try this sample code from react-bootstrap, I keep getting errors such as \" Parameter \'context\' implicitly has an \'any\' type; \"Property \'value\' does not exist
Specifying the type of the constructor parameter resolved this issue in my case.
class Clock extends React.Component { constructor(props: any) { super(props); } }