feat: optimize proxy page ui

This commit is contained in:
GyDi
2022-11-20 19:46:16 +08:00
parent 5fb1afc681
commit 9dd3b8fd68
11 changed files with 430 additions and 435 deletions

View File

@@ -28,7 +28,7 @@ interface Props {
onHeadState: (val: Partial<HeadState>) => void;
}
const ProxyHead = (props: Props) => {
export const ProxyHead = (props: Props) => {
const { sx = {}, groupName, headState, onHeadState } = props;
const { showType, sortType, filterText, textState, testUrl } = headState;
@@ -163,5 +163,3 @@ const ProxyHead = (props: Props) => {
</Box>
);
};
export default ProxyHead;