```datacorejsx
// A list of columns to show in the table.
const COLUMNS = [
{ id: "Name", value: page => page.$link },
{ id: "Rating", value: page => page.value("rating") }
];
return function View() {
// Selecting `#game` pages, for example.
const pages = dc.useQuery('@page and #input and !path("Hidden")');
// Uses the built in 'vanilla table' component for showing objects in a table!
return <dc.VanillaTable columns={COLUMNS} rows={pages} paging={10} />;
}
```