هنا الكود الخالص بي والذي يظهر هذا الخطأ في ملف auth.ts:
import* as React from 'react';import{ context } from 'next';exportconst withAuthSync =(WrappedComponent:ComponentExtra)=>class extends React.Component{static async getInitialProps(ctx: context){const authToken = auth(ctx);const allProps =WrappedComponent.getInitialProps &&(await WrappedComponent.getInitialProps(ctx));return{...allProps, authToken };}
render(){// السطر التالي هو ما يسبب الخطأ على ما أظنreturn<WrappedComponent{...this.props}/>;}};
السؤال
Adam Ebrahim
مرحبًا، أحاول عمل مكون HOC في React بإستخدام typescript لكي أتحكم في نظام Authentication لكن عند تنفيذ الكود يظهر لي الخطأ التالي:
هنا الكود الخالص بي والذي يظهر هذا الخطأ في ملف auth.ts:
لا أعلم لماذا يتم إظهار كود JSX على أنه خطأ
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.