diff --git a/src/components/board/StoneView.tsx b/src/components/board/StoneView.tsx index fdae813..e795b33 100644 --- a/src/components/board/StoneView.tsx +++ b/src/components/board/StoneView.tsx @@ -2,18 +2,19 @@ import * as React from "react"; import { FunctionComponent } from "react"; const StoneView: FunctionComponent<{ color: string }> = ({ color }) => { - return ( -
- ); - }; + return ( +
+ +
+ ); +}; - export default StoneView; \ No newline at end of file +export default StoneView; \ No newline at end of file