Farmbot-Web-App/src/__test_support__/wrapper.tsx

8 lines
156 B
TypeScript

import * as React from "react";
export class Wrapper extends React.Component<any, any> {
render() {
return <div> {this.props.children} </div>;
}
}