mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
15 lines
205 B
JavaScript
15 lines
205 B
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
|
|
type Props = {
|
|
children: React.Node
|
|
};
|
|
|
|
class Wrap extends React.PureComponent<Props> {
|
|
render() {
|
|
return this.props.children;
|
|
}
|
|
}
|
|
|
|
export default Wrap;
|