Initial resources kit.

This commit is contained in:
James Cole
2023-07-11 11:45:55 +02:00
parent 27037c2fbb
commit b9cf8b3ef2
62 changed files with 32671 additions and 5563 deletions

View File

@@ -0,0 +1,22 @@
class DateRange {
start=null;
end = null;
constructor() {
this.start = null
this.end = null
}
setStart(start) {
this.start = start
}
setEnd(end) {
this.end = end
}
}
export default DateRange