mancala/apps/frontend/src/components/Space.tsx

10 lines
255 B
TypeScript
Raw Normal View History

2022-07-23 00:25:48 +03:00
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;