feat: support channel level auth

This commit is contained in:
JustSong
2024-11-10 10:47:25 +08:00
parent 08a8688aa7
commit 1a3ebafd34
3 changed files with 56 additions and 16 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
import React from 'react';
import { Segment, Dimmer, Loader } from 'semantic-ui-react';
import { Dimmer, Loader, Segment } from 'semantic-ui-react';
const Loading = ({ prompt: name = 'page' }) => {
return (
<Segment style={{ height: 100 }}>
<Dimmer active inverted>
<Loader indeterminate>加载{name}...</Loader>
<Loader indeterminate>加载 {name} ...</Loader>
</Dimmer>
</Segment>
);