You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
713 B

import App from './components/app.component.js'
import Grid from './components/grid/grid.component.js'
import GridCell from './components/grid/grid-cell.component.js'
import GridRow from './components/grid/grid-row.component.js'
import GridSlots from './components/grid/grid-slots.component.js'
import Scoreboard from './components/scoreboard.component.js'
// Registry of components to be loaded by Rivets.js
const components = {
App, // the main app
Grid, // the connect-4 grid
GridCell, // a single cell in the connect-4 grid
GridRow, // a row of cells in the connect-4 grid
GridSlots, // the slots at the top of the connect-4 grid
Scoreboard, // the game scoreboard
}
export default components