UNPKG

@tamagui/react-native-web-lite

Version:
17 lines (16 loc) 448 B
import React from "react"; import { View } from "./View/index.mjs"; import { jsx } from "react/jsx-runtime"; class UnimplementedView extends React.Component { setNativeProps = () => {}; render() { if (process.env.NODE_ENV === "development") { console.warn(`Unimplemented view`); } return /* @__PURE__ */jsx(View, { ...this.props }); } } export { UnimplementedView }; //# sourceMappingURL=UnimplementedView.mjs.map