feat: adjust profiles page ui

This commit is contained in:
GyDi
2022-11-20 22:37:34 +08:00
parent 8bb4803ff9
commit 7338838b0e
10 changed files with 120 additions and 140 deletions

View File

@@ -18,7 +18,7 @@ interface Props {
onClose: () => void;
}
const LogViewer = (props: Props) => {
export const LogViewer = (props: Props) => {
const { open, logInfo, onClose } = props;
const { t } = useTranslation();
@@ -67,5 +67,3 @@ const LogViewer = (props: Props) => {
</Dialog>
);
};
export default LogViewer;