mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-01-28 05:36:33 +02:00
22 lines
401 B
JavaScript
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; |