react-code-canvas
Version:
React component for running and previewing React code with live editing capabilities
6 lines (5 loc) • 427 B
TypeScript
import * as React from "react";
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): React.JSX.Element;
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): React.JSX.Element;
export { ScrollArea, ScrollBar };