import { BouncingBalls } from "@/components/ui/bouncing-balls";
const settings = {
speed: 0.5,
gravity: 0,
interactionScale: 4,
numBalls: 150,
bounceDamping: 1,
friction: 1,
};
export default function Demo(props: Partial<typeof settings>) {
const s = { ...settings, ...props };
return (
<div className="h-screen w-screen">
<BouncingBalls {...s} />
</div>
);
}