@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
17 lines (16 loc) • 402 B
JavaScript
import { jsx } from "react/jsx-runtime";
import {
forwardRef,
memo
} from "react";
import { ScrollView as SV } from "@crossed/sheet";
const ScrollView = memo(
forwardRef((props, ref) => {
return /* @__PURE__ */ jsx(SV, { ...props, ref, contentContainerStyle: props.style });
})
);
ScrollView.displayName = "Sheet.ScrollView";
export {
ScrollView
};
//# sourceMappingURL=ScrollView.js.map