First commit.

This commit is contained in:
Robin Davies
2021-08-15 12:42:46 -04:00
commit d8a6022947
264 changed files with 95068 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
import React, { Component, ReactNode } from 'react';
import { withStyles, createStyles, WithStyles } from '@material-ui/core';
import { Theme } from '@material-ui/core/styles/createMuiTheme';
import { Lv2Plugin } from './Lv2Plugin'
const pedalStyles = ({ palette }: Theme) => createStyles({
});
interface PedalProps extends WithStyles<typeof pedalStyles> {
plugin: Lv2Plugin;
children?: React.ReactChild | React.ReactChild[];
};
type PedalState = {
};
export const TemporaryDrawer = withStyles(pedalStyles)(
class extends Component<PedalProps, PedalState>
{
state: PedalState;
constructor(props: PedalProps) {
super(props);
this.state = {
};
}
render() : ReactNode {
return (
<div>
</div>
);
}
}
);