Start work on plugin UI, this is pretty painful

This commit is contained in:
Lucien Greathouse
2019-01-03 18:06:24 -08:00
parent b7a28aa511
commit 5816bb64dc
5 changed files with 348 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
local Roact = require(script:FindFirstAncestor("Rojo").Roact)
local ConnectPanel = require(script.Parent.ConnectPanel)
local e = Roact.createElement
local App = Roact.Component:extend("App")
function App:render()
return e("ScreenGui", nil, {
ConnectPanel = e(ConnectPanel),
})
end
return App