refactor: adjust base components export

This commit is contained in:
GyDi
2022-11-20 22:03:55 +08:00
parent 32b72f0ef6
commit dace993c21
34 changed files with 44 additions and 66 deletions

View File

@@ -37,7 +37,7 @@ const LoadingItem = styled("div")(({ theme }) => ({
background: theme.palette.text.secondary,
}));
const BaseLoading = () => {
export const BaseLoading = () => {
return (
<Loading>
<LoadingItem />
@@ -46,5 +46,3 @@ const BaseLoading = () => {
</Loading>
);
};
export default BaseLoading;