mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-27 14:05:27 +00:00
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;
|