This commit is contained in:
lb
2023-06-30 11:08:43 +08:00
commit 3c69bc58bf
131 changed files with 4841 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
class Stack {
constructor() {
this.items = []
};
push(value) {
return this.items.push(value);
};
pop() {
return this.items;
};
}

0
src/Store/index.js Normal file
View File