UNPKG
color-classifier
Version:
latest (0.0.1)
0.0.1
Classify the color along the reference color. using algorithm the CIEDE2000, RGB, HSV.
color-classifier
/
demo
/
src
/
js
/
entry.js
9 lines
(7 loc)
•
155 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
"react"
import
{ render }
from
"react-dom"
import
App
from
"./components/app.js"
render
(
<
App
/>
,
document
.
getElementById
(
"app"
) );