discord-sandboxed/src-react/screens/Dashboard.jsx

16 lines
332 B
React
Raw Normal View History

2019-10-07 05:06:55 +00:00
import React from 'react'
import { ButtonInput } from '../components/ButtonInput'
const { app } = window.require('electron').remote
class Dashboard extends React.Component {
render () {
return (
<div>
2019-10-07 06:54:38 +00:00
<webview src="https://discordapp.com/login"></webview>
2019-10-07 05:06:55 +00:00
</div>
)
}
}
module.exports = Dashboard