18 lines
387 B
JavaScript
18 lines
387 B
JavaScript
import React from "react";
|
|
import Client from "../components/Client/Client";
|
|
import ClientsList from "../components/ClientList/ClientList";
|
|
import './Home.css'
|
|
|
|
export function MainPage() {
|
|
return (
|
|
<>
|
|
<div id="main-container">
|
|
<div id="main-header">
|
|
<h2>WireGuard</h2>
|
|
<a href="/">Выйти</a>
|
|
</div>
|
|
<ClientsList/>
|
|
</div>
|
|
</>
|
|
)
|
|
} |