import React from "react"; interface Props { innerRef?: (node: HTMLDivElement) => void; children: React.ReactNode; } const Background = (props: Props) => { const { innerRef } = props; return (
{props.children}
); }; export default Background;