11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
|
import React from 'react'
|
||
|
import './trademark-edit.css'
|
||
|
export default function TrademarkExpertEdit() {
|
||
|
const height = window.innerHeight - 180;
|
||
|
return (
|
||
|
<div className='trademarkExpertBox' style={{ height: `${height}px`, overflow: 'auto'}}>
|
||
|
|
||
|
</div>
|
||
|
)
|
||
|
}
|