15 lines
196 B
JavaScript
15 lines
196 B
JavaScript
|
|
||
|
class ScaffoldingReact {
|
||
|
constructor(embark, options){
|
||
|
this.embark = embark;
|
||
|
this.options = options;
|
||
|
}
|
||
|
|
||
|
build(contract){
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
module.exports = ScaffoldingReact;
|