chatpad/src/components/ScrollIntoView.tsx
Andrei Canta 6830e88843 launch
2023-03-17 21:58:39 +02:00

14 lines
281 B
TypeScript

import { ReactNode } from "react";
export function ScrollIntoView({ children }: { children: ReactNode }) {
return (
<div
ref={(node) => {
if (!node) return;
node.scrollIntoView({ behavior: "smooth" });
}}
>
{children}
</div>
);
}