Commit 29d963b5 authored by Shen Chang's avatar Shen Chang Committed by GitHub

refactor(with*.ts): remove curly braces

parent 8179d58f
...@@ -18,7 +18,7 @@ export interface IIdentificationContextComponentProps { ...@@ -18,7 +18,7 @@ export interface IIdentificationContextComponentProps {
export default function withIdentificationContextConsumer<P = any>(Component: React.ComponentType<IIdentificationContextComponentProps & P>) { export default function withIdentificationContextConsumer<P = any>(Component: React.ComponentType<IIdentificationContextComponentProps & P>) {
const NewComponent = (props: P) => ( const NewComponent = (props: P) => (
<IdentificationContext.Consumer> <IdentificationContext.Consumer>
{(contextProps: IIdentificationContextProps) => <Component _identificationContextProps={contextProps || {}} {...props} />} {(contextProps: IIdentificationContextProps) => <Component _identificationContextProps={contextProps} {...props} />}
</IdentificationContext.Consumer> </IdentificationContext.Consumer>
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment