@uifx/infinite-wall
v0.0.2
Published
A component library that enables two-dimensional infinite scrolling
Readme
Usage
import { InfiniteWall } from "@uifx/infinite-wall/react";
function Example() {
return (
<InfiniteWall
brickHeight={100}
brickWidth={50}
draggable
zoomControl
style={{ border: "4px dashed red", height: 400, width: 700 }}
/>
);
}