react-image-puzzle
v0.1.1
Published
React component to create a puzzle out of an image
Readme
React Image Puzzle
Create a simple swap tile puzzle out of an image.
Example

import { render } from 'react-dom';
import Puzzle from 'react-image-puzzle';
render(
<Puzzle
image='https://upload.wikimedia.org/wikipedia/en/6/68/John_Coltrane_-_Blue_Train.jpg'
/>,
document.getElementById('root')
);