mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 17:45:56 +08:00
5 lines
118 B
JavaScript
5 lines
118 B
JavaScript
export default (condition) => (BaseComponent) => {
|
|
BaseComponent.isExcluded = condition;
|
|
return BaseComponent;
|
|
};
|