import "./App.css"; import ButtonRow, { ActionProps } from "./components/ButtonRow"; import ReviewField from "./components/ReviewField"; function App() { const buttons: ActionProps[] = [ { name: "Cancel", type: "outlined", }, { name: "Submit", type: "contained", }, ]; return ( <>
); } export default App;