import type { ReactNode } from "react"; import { MaxWidth } from "../MaxWidth"; import { Sidebar } from "../Sidebar"; type PriceFeedsProps = { children: ReactNode; }; export const PriceFeeds = ({ children }: PriceFeedsProps) => (
{children}
);