This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// const MAX_GRID_Y = 10; | |
// const MAX_GRID_X = 10; | |
// const START_POS_Y = 0; | |
// const START_GRID_X = 0; | |
interface Coordinate { | |
x: number; | |
y: number; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ticket-XXX-Number - Fixing Things | |
Delete any list items or questions that aren't relevant - if they're left unfilled it's assumed that | |
they're relevant but your PR isn't finished yet. | |
Write a short description of what the PR achieves. | |
## PR Declaration | |
* [ ] I have implemented a feature, bug or improvement |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect } from 'react'; | |
import bulmaCalendar from 'bulma-calendar/dist/js/bulma-calendar.min'; | |
import "~bulma-calendar/dist/css/bulma-calendar.min.css" | |
function Dob({ className }) { | |
useEffect(() => { | |
// Initialize all input of date type. | |
const calendars = bulmaCalendar.attach('[type="date"]', {}); | |
// Loop on each calendar initialized |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
five |