blob: 03b9f8868a45f478d5069c753530eb3b77141153 (
plain)
1
2
3
4
5
6
7
8
|
import React from 'react'
import handles from 'app/views/tile/handles'
export default function TileHandle (props) {
const Tile = handles[props.tile.type]
return <Tile {...props} />
}
|