import { Button, Dialog, Form, Stack, Table, Title, useComponentState, } from "@airplane/views"; import airplane from "airplane"; const AddCustomerDialog = () => { const { id, open, close } = useComponentState(); return ( <>
); }; const AddOrderDialog = () => { const { id, open, close } = useComponentState(); return ( <> ); }; const AddPaymentDialog = () => { const { id, open, close } = useComponentState(); return ( <> ); }; const CustomersView = () => { return ( Customers ); }; const OrdersView = () => { return ( Orders
); }; const PaymentsView = () => { return ( Payments
); }; const MariaDBGui = () => { return ( ); }; export default airplane.view( { slug: "maria_db_gui", name: "Maria DB GUI", }, MariaDBGui );