mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
7 lines
179 B
JavaScript
7 lines
179 B
JavaScript
import React from "react";
|
|
import { CommonLayout } from "@site/src/refine-theme/common-layout";
|
|
|
|
export default function Layout(props) {
|
|
return <CommonLayout {...props} />;
|
|
}
|