React component to create a puzzle out of an image
npm install react-image-puzzleCreate a simple swap tile puzzle out of an image.

``js
import { render } from 'react-dom';
import Puzzle from 'react-image-puzzle';
render(
/>,
document.getElementById('root')
);
``
Property | Type | Required | Default value | Description
:--- | :--- | :--- | :--- | :---
image | string | yes | | image url for the puzzle
size | number | no | 300 | side size of the image
level | number | no | 3 | number of cells per side
onDone | funciton | no | | callback when the puzzle is completed
-----