You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
308 B
13 lines
308 B
import React from 'react';
|
|
import CardTitle from '../public/cardTitle';
|
|
import '../basis.less';
|
|
|
|
export default function Left_2(props) {
|
|
return (
|
|
<div className='card-item' style={{ height: '55%' }}>
|
|
<CardTitle title='水泵状态' />
|
|
<div className='card-content'></div>
|
|
|
|
</div>
|
|
)
|
|
}
|
|
|