8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
import Content from "@/components/panel/Content";
|
|
|
|
function LayoutPanel({ children }) {
|
|
return <Content children={children} />;
|
|
}
|
|
|
|
export default LayoutPanel;
|