persona-community-5/.pnpm-store/v3/files/e6/13c8826038a906c4fd178e034e3bba85112db7e8b51fd4e675af68540c6334609a990a4a2eca7fb8339faf8439124bef34772ed4ec458bf8b931791d5d617d
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

7 lines
331 B
Plaintext

import * as React from 'react';
import { RemoveScroll } from './UI';
import SideCar from './sidecar';
const ReactRemoveScroll = React.forwardRef((props, ref) => (React.createElement(RemoveScroll, { ...props, ref: ref, sideCar: SideCar })));
ReactRemoveScroll.classNames = RemoveScroll.classNames;
export default ReactRemoveScroll;