13 lines
322 B
JavaScript
13 lines
322 B
JavaScript
import PanelPage from "@/components/panel";
|
|
import LayoutPanel from "@/components/layoutPanel";
|
|
import Information from '../../data/information.json';
|
|
|
|
function Panel() {
|
|
return (
|
|
<LayoutPanel data={Information}>
|
|
<PanelPage data={Information} />
|
|
</LayoutPanel>
|
|
)
|
|
}
|
|
|
|
export default Panel |