Files
wastpol/pages/templates/content.js
2025-12-03 13:05:11 +01:00

14 lines
241 B
JavaScript

import Main from "../elements/main";
import Second from "../elements/second";
import Third from "../elements/third";
export default function Content() {
return (
<div>
<Main />
<Second />
<Third />
</div>
);
}