In the upcoming lecture, we will be implementing our Resizable component. Similar to what was discussed earlier in the course, we will need to include children in the interface along with our other props.

Find the resizable.tsx file and make sure to update your ResizableProps interface to the following:

interface ResizableProps {
  direction: "horizontal" | "vertical";
  children?: React.ReactNode;
}