init
This commit is contained in:
11
src/Store/features/SliceBase.js
Normal file
11
src/Store/features/SliceBase.js
Normal 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
0
src/Store/index.js
Normal file
Reference in New Issue
Block a user