Create core structure for the app

This commit is contained in:
2020-12-21 00:49:50 +05:30
parent 3b0a212ad4
commit 90ba2410b9
10 changed files with 85 additions and 186 deletions

9
src/plugins/mpd.js Normal file
View File

@@ -0,0 +1,9 @@
import React from "react";
function Mpd() {
return <p> MPD Plugin </p>;
}
Mpd.pluginName = "Music Player";
export default Mpd;