如何解决reactjs-在约会屏幕上显示个人空间
我正在使用react devextreme-reactive-appointment屏幕。我有自己的自定义域名。我想在屏幕上显示它们。我该怎么办?
所以有一个列叫做“ customerName”,我想在约会屏幕上显示它。我在下面的代码段中遇到了麻烦。
const AppointmentFormContainer = withStyles(containerStyles,{ name: 'AppointmentFormContainer' })(({
data,...restProps
}: AppointmentContainerBasic) => {
return (
<Appointments.AppointmentContent {...restProps} data={data}>
<div className={classes.container}>
<div>
{data.customerName}
</div>
<div className={classNames(classes.text,classes.content)}>
{data.customerSurname}
</div>
</div>
</Appointments.AppointmentContent>
);
});
https://codesandbox.io/s/2wfsj?file=/demo-data/appointments.js
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。