mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-01-23 02:35:34 +00:00
chore: use only rolldown for building (#7101)
This commit is contained in:
parent
a5413d7272
commit
f0e7942a55
9 changed files with 460 additions and 720 deletions
|
|
@ -20,7 +20,6 @@ export const ShoutPage = ()=>{
|
|||
setShouts([...shouts, shout])
|
||||
})
|
||||
pluginSocket.on('results:stats', (statData) => {
|
||||
console.log('Shoutdata', statData);
|
||||
setTotalUsers(statData.totalUsers);
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
import {useStore} from "../store/store.ts";
|
||||
import * as Dialog from '@radix-ui/react-dialog';
|
||||
import ReactComponent from './brand.svg?react';
|
||||
import brand from './brand.svg'
|
||||
|
||||
export const LoadingScreen = ()=>{
|
||||
const showLoading = useStore(state => state.showLoading)
|
||||
|
||||
|
|
@ -10,7 +11,7 @@ export const LoadingScreen = ()=>{
|
|||
<div className="flex flex-col items-center">
|
||||
<div className="animate-spin w-16 h-16 border-t-2 border-b-2 border-[--fg-color] rounded-full"></div>
|
||||
<div className="mt-4 text-[--fg-color]">
|
||||
<ReactComponent/>
|
||||
<img src={brand}/>
|
||||
</div>
|
||||
</div>
|
||||
</Dialog.Content>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue