import React from 'react'; export const GeneralDivWrapper = ({ children, }: { children: React.ReactNode; }) => { return (
{children}
); };