This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import React, {Component} from 'react';
import competition from './comcss/competition.css';
import Noentry from './Noentry.jpg';
// 团队竞赛报名无报名子组件
class RegisNodata extends React.Component {
constructor(props) {
super(props)
}
render() {
return (
<div className="bootom">
<div className="bootomimg" style={{
height: "80px",
width: "125px",
marginTop: "107px",
background: `url(${Noentry})`,
backgroundPosition: "center",
backgroundSize: "110% 100%",
}}>
</div>
<p className="bootomtext">暂无战队参与报名哦,赶紧来成为第一个挑战的吧~</p>
)
export default RegisNodata;