tic-tac-toe-brk
v1.0.4
Published
Tic Tac Toe Components
Downloads
3
Readme
Tic Tac Toe Game Developed With React
Usage
- Create a React application.
- Install package:
npm i tic-tac-toe-brk
- Check the version at your package.json file.
- Import CSS at src/main.js:
import 'tic-tac-toe-brk/dist/css/styles.css';
- Import Components:
import { Board, Square } from 'tic-tac-toe-brk';
- Use Components:
function App() {
return (
<>
<Board name="Berke vs Other User" game="Tic Tac Toe Game" />
</>
)
}
export default App;