mancala/mobile/src/components/Space.tsx

11 lines
293 B
TypeScript

import * as React from 'react';
import { FunctionComponent } from 'react';
import { View } from 'react-native';
const Space: FunctionComponent<{ width?: number, height?: number }> = ({ width, height }) => {
return (
<View style={{ width, height}}/>
);
}
export default Space;