discord-sandboxed/src-react/screens/Dashboard.jsx
2019-10-06 23:54:38 -07:00

16 lines
332 B
JavaScript

import React from 'react'
import { ButtonInput } from '../components/ButtonInput'
const { app } = window.require('electron').remote
class Dashboard extends React.Component {
render () {
return (
<div>
<webview src="https://discordapp.com/login"></webview>
</div>
)
}
}
module.exports = Dashboard