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.
14 lines
316 B
14 lines
316 B
import React from 'react';
|
|
import CardTitle from '../public/cardTitle';
|
|
import '../basis.less';
|
|
|
|
export default function Right_2(props) {
|
|
return (
|
|
<div className='card-item' style={{ height: '55%' }}>
|
|
<CardTitle title='泵站水位' />
|
|
<div className='card-content'>
|
|
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|