export const meta = { title: `Write app code`, description: `Create a database and GraphQL API.`, }; The generated UI components accept properties available on the ["Flex" component](https://ui.docs.amplify.aws/react/components/flex) or properties available on the ["Collection" component](https://ui.docs.amplify.aws/react/components/collection). For example, to make a component go full width you can use all the properties available on an Amplify UI “Flex” component. In this case, I've set `width={“100vw”}` for the `NavBar` and the `MarketingFooter`, so it scales with my browser window size. You can also enable pagination for `NewHomes` by setting the `isPaginated` and `itemsPerPage` properties. ```js import './App.css'; import { NewHomes, NavBar, MarketingFooter } from './ui-components' function App() { return (