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

@@ -42,7 +42,7 @@ const TypeBox = styled(Box)(({ theme }) => ({
lineHeight: 1.25,
}));
const ProxyItem = (props: Props) => {
export const ProxyItem = (props: Props) => {
const { groupName, proxy, selected, showType = true, sx, onClick } = props;
// -1/<=0 为 不显示
@@ -174,5 +174,3 @@ const ProxyItem = (props: Props) => {
</ListItem>
);
};
export default ProxyItem;