10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
import * as React from 'react';
|
|
import { FunctionComponent } from 'react';
|
|
|
|
const Space: FunctionComponent<{ width?: string, height?: string }> = ({ width, height }) => {
|
|
return (
|
|
<div style={{ width, height}}/>
|
|
);
|
|
}
|
|
|
|
export default Space; |