diff --git a/src/Views/DefaultLoader.js b/src/Views/DefaultLoader.js new file mode 100644 index 0000000..cfcfd66 --- /dev/null +++ b/src/Views/DefaultLoader.js @@ -0,0 +1,13 @@ +export default class DefaultLoader { + constructor(filepath) { + this.content = filepath; + } + + async load() { + return this.content; + } + + parse(data = null) { + return this.content; + } +}