Jan Naahs 738bdf4f99 wip
2020-08-02 20:22:53 +02:00

22 lines
401 B
JavaScript

import Panel from "../components/Panel";
import React from "react";
const Mods = () => {
return (
<>
<Panel
title="Mods"
className="mb-6"
content={<h1>Test</h1>}
/>
<Panel
title="Mod Packs"
content={<h1>Test</h1>}
/>
</>
)
}
export default Mods;