7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
function MyGap({height}){
|
|
return (
|
|
<div style={{height}} className={'bg-gray-100'}></div>
|
|
)
|
|
}
|
|
export default MyGap;
|