mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
* Switch git submodules to Wally packages * Update build snapshot * Add wally to foreman and use latest versions * Install packages in CI runners * Fix indents * Install packages in the correct directory * Install packages in correct dir of release action too * Remove submodules from ci checkout * Remove submodules from release checkout * Update selene with latest fix * Fix whitespace Co-authored-by: Lucien Greathouse <me@lpghatguy.com>
22 lines
502 B
Lua
22 lines
502 B
Lua
local Rojo = script:FindFirstAncestor("Rojo")
|
|
local Plugin = Rojo.Plugin
|
|
local Packages = Rojo.Packages
|
|
|
|
local Roact = require(Packages.Roact)
|
|
|
|
local Spinner = require(Plugin.App.Components.Spinner)
|
|
|
|
local e = Roact.createElement
|
|
|
|
local ConnectingPage = Roact.Component:extend("ConnectingPage")
|
|
|
|
function ConnectingPage:render()
|
|
return e(Spinner, {
|
|
position = UDim2.new(0.5, 0, 0.5, 0),
|
|
anchorPoint = Vector2.new(0.5, 0.5),
|
|
transparency = self.props.transparency,
|
|
})
|
|
end
|
|
|
|
return ConnectingPage
|