mirror of
https://github.com/woodchen-ink/clash-and-dashboard.git
synced 2025-07-18 22:11:56 +08:00
13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
import * as React from 'react'
|
|
import { Header, Icon } from '@components'
|
|
|
|
export default class Proxies extends React.Component<{}, {}> {
|
|
render () {
|
|
return <div className="container">
|
|
<Header title="代理" >
|
|
<Icon type="plus" size={20} style={{ fontWeight: 'bold' }} />
|
|
</Header>
|
|
</div>
|
|
}
|
|
}
|