remove unused method

This commit is contained in:
Iuri Matias 2018-12-19 19:17:34 -05:00
parent 7a4eefe707
commit 971d65c9bc
1 changed files with 0 additions and 8 deletions

View File

@ -57,14 +57,6 @@ const status = new StatusJS();
type Props = {};
function sendRequest(data, cb) {
let id = uuid();
ipcRenderer.on('rpc-' + id, (data) => {
cb(data);
});
ipcRenderer.send('rpc', id, data);
}
export default class Home extends PureComponent<Props> {
props: Props;