nyx-dashboard/pages/controlpanel/index.js

14 lines
294 B
JavaScript
Raw Normal View History

2021-06-20 15:49:56 +02:00
import React from 'react'
import CardContainer from '../../components/CardContainer'
function index() {
return (
<div>
<h1>Control Panel</h1>
<CardContainer link='/controlpanel/commands'>Commands</CardContainer>
</div>
)
}
export default index