31468a37
Yang Xiaoxiao
source
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import 'babel-polyfill'
import React,{ Component } from 'react'
import ReactDOM from 'react-dom';
import 'antd/dist/antd.css';
import { Carousel } from 'antd';
import '../css/style.css'
import SearchAlarm from './components/searchAlarm'
class Root extends Component {
render() {
// 公网
// http://40.76.11.95:8888/tcplayer.html?id=2200001201000701
// 内网
// http://192.168.10.9:8888/tcplayer.html?id=2200001201000053
return (
<Carousel effect="fade" style={{
color: 'white',
fontSize:'30px',
height:'100%',
width:'100%'
}}>
<div>
<div style={{
height:'calc(100% - 30px)'
}}>
|