14 lines
398 B
TypeScript
14 lines
398 B
TypeScript
|
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
||
|
|
||
|
export function HomeRoute(): React.ReactElement {
|
||
|
return (
|
||
|
<VirtWebRouteContainer label="VirtWeb">
|
||
|
<p>VirtWeb is an Open Source web ui for Libvirt.</p>
|
||
|
<p>
|
||
|
You can use the menu on the left to access the different sections of the
|
||
|
application.
|
||
|
</p>
|
||
|
</VirtWebRouteContainer>
|
||
|
);
|
||
|
}
|