Stubbing out functions

This commit is contained in:
Nate Taylor
2019-10-23 19:42:58 -05:00
parent dec65a58da
commit 96eac8e434
7 changed files with 142 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
import setText from './results.mjs';
export function get(){
setText('A');
}
export function getCatch(){
setText('B');
}
export function chain(){
setText('C');
}
export function final(){
setText('D');
}