blob: a721fc9bbbbfc49668780648ba04e01f7717f553 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { About } from '~/components/about/About';
import { connect } from '~/components/StateProvider';
import { getClashAPIConfig } from '~/store/app';
import { State } from '~/store/types';
const mapState = (state: State) => ({
apiConfig: getClashAPIConfig(state),
});
export default connect(mapState)(About);
|