Remove MPD and Weather plugins
This commit is contained in:
parent
ce86f1e029
commit
822eff6c5d
|
@ -28,8 +28,8 @@ function Core() {
|
|||
<Clock size="xxlarge" />
|
||||
<Clock size="xxlarge" type="digital" />
|
||||
<Box direction="row" margin="1.5em" wrap={true}>
|
||||
<Button onClick={() => dispatch(setPlugin("mpd"))} primary
|
||||
label="Music Player" />
|
||||
<Button onClick={() => dispatch(setPlugin("sideMirrors"))} primary
|
||||
label="Side Mirrors" />
|
||||
{dummyButtons.map(i =>
|
||||
<Button primary label={i} key={i} margin="0 0 0 1em" />
|
||||
)}
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
import Mpd from "./mpd";
|
||||
import Weather from "./weather";
|
||||
import Warning from "./warning";
|
||||
import Manual from "./manual";
|
||||
export default {
|
||||
mpd: Mpd,
|
||||
weather: Weather,
|
||||
warning: Warning,
|
||||
manual: Manual
|
||||
};
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
import React from "react";
|
||||
|
||||
function Mpd() {
|
||||
return <p> MPD Plugin </p>;
|
||||
}
|
||||
|
||||
Mpd.pluginName = "Music Player";
|
||||
|
||||
export default Mpd;
|
|
@ -1,9 +0,0 @@
|
|||
import React from "react";
|
||||
|
||||
function Weather() {
|
||||
return <p> Weather Plugin </p>;
|
||||
}
|
||||
|
||||
Weather.pluginName = "Weather";
|
||||
|
||||
export default Weather;
|
Loading…
Reference in New Issue