mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
create new rows from table view
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
import React, { useEffect } from "react";
|
||||
import { makeStyles } from "@material-ui/core/styles";
|
||||
|
||||
import { Navigation } from "../components/Navigation";
|
||||
import Navigation from "../components/Navigation";
|
||||
import useTable from "../hooks/useTable";
|
||||
import Table from "../components/Table";
|
||||
import useRouter from "../hooks/useRouter";
|
||||
import useTableConfig from "../hooks/useTableConfig";
|
||||
import Button from "@material-ui/core/Button";
|
||||
const useStyles = makeStyles({});
|
||||
|
||||
export default function AuthView() {
|
||||
@@ -29,6 +30,7 @@ export default function AuthView() {
|
||||
addColumn={configActions.addColumn}
|
||||
tableActions={tableActions}
|
||||
/>
|
||||
<Button onClick={tableActions.addRow}>Add Row</Button>
|
||||
</Navigation>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user