mirror of
https://github.com/deiucanta/chatpad.git
synced 2026-03-11 09:04:31 +00:00
14 lines
281 B
TypeScript
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>
|
|
);
|
|
}
|