mirror of
https://github.com/jambonz/jambonz-webapp.git
synced 2026-02-09 02:29:45 +00:00
15 lines
263 B
TypeScript
15 lines
263 B
TypeScript
import { H1 } from "@jambonz/ui-kit";
|
|
import React from "react";
|
|
import ClientsForm from "./form";
|
|
|
|
export const ClientsAdd = () => {
|
|
return (
|
|
<>
|
|
<H1 className="h2">Add sip client</H1>
|
|
<ClientsForm />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ClientsAdd;
|