feat: adjust profiles page ui

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

View File

@@ -7,7 +7,7 @@ interface Props {
onChange: (value: string) => void;
}
const FileInput = (props: Props) => {
export const FileInput = (props: Props) => {
const { onChange } = props;
const { t } = useTranslation();
@@ -59,5 +59,3 @@ const FileInput = (props: Props) => {
</Box>
);
};
export default FileInput;