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