Rename decorator for clarity
This commit is contained in:
parent
20a615396b
commit
0a9985fb48
2 changed files with 3 additions and 3 deletions
|
@ -18,9 +18,9 @@ limitations under the License.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import sdk from '../../../index';
|
import sdk from '../../../index';
|
||||||
import {replaceComponent} from "../../../utils/replaceComponent";
|
import {replaceableComponent} from "../../../utils/replaceableComponent";
|
||||||
|
|
||||||
@replaceComponent("views.auth.AuthPage")
|
@replaceableComponent("views.auth.AuthPage")
|
||||||
export default class AuthPage extends React.PureComponent {
|
export default class AuthPage extends React.PureComponent {
|
||||||
render() {
|
render() {
|
||||||
const AuthFooter = sdk.getComponent('auth.AuthFooter');
|
const AuthFooter = sdk.getComponent('auth.AuthFooter');
|
||||||
|
|
|
@ -17,6 +17,6 @@ limitations under the License.
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import sdk from '../index';
|
import sdk from '../index';
|
||||||
|
|
||||||
export function replaceComponent(name: string, origComponent: React.Component) {
|
export function replaceableComponent(name: string, origComponent: React.Component) {
|
||||||
return () => sdk.getComponent(name) || origComponent;
|
return () => sdk.getComponent(name) || origComponent;
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue