Initial commit: bootstrap monorepo NetMapper
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom/client'
|
||||
import { App } from './pages/App'
|
||||
|
||||
ReactDOM.createRoot(document.getElementById('root')!).render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>
|
||||
)
|
||||
@@ -0,0 +1,14 @@
|
||||
export function App() {
|
||||
return (
|
||||
<main style={{ fontFamily: 'sans-serif', padding: '2rem' }}>
|
||||
<h1>NetMapper</h1>
|
||||
<p>Bootstrap iniziale della UI.</p>
|
||||
<ul>
|
||||
<li>Topology view</li>
|
||||
<li>Inventory view</li>
|
||||
<li>IP registry</li>
|
||||
<li>Discovery jobs</li>
|
||||
</ul>
|
||||
</main>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user