forked from rojo-rbx/rojo
Start work on plugin UI, this is pretty painful
This commit is contained in:
15
plugin/src/Components/App.lua
Normal file
15
plugin/src/Components/App.lua
Normal 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
|
||||
Reference in New Issue
Block a user