Skip to content

Commit

Permalink
🤖 Merge PR DefinitelyTyped#59127 [react-breadcrumbs] Adjust tests to …
Browse files Browse the repository at this point in the history
…not assume implicit children by @eps1lon
  • Loading branch information
eps1lon authored Mar 23, 2022
1 parent e890a55 commit 45af902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/react-breadcrumbs/react-breadcrumbs-tests.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from "react";
import { Breadcrumbs, Breadcrumb } from "react-breadcrumbs";

class Wrapper extends React.Component {
class Wrapper extends React.Component<{ children?: React.ReactNode }> {
render() {
return <div>{this.props.children}</div>;
}
Expand Down

0 comments on commit 45af902

Please sign in to comment.