From ee64d788b134bd688e2f733c3b00b01b1afad772 Mon Sep 17 00:00:00 2001 From: Hiroyoshi Takahashi Date: Wed, 6 Apr 2016 13:34:14 +0900 Subject: [PATCH] Add style description to readme. --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 95804d3..62b9cab 100644 --- a/README.md +++ b/README.md @@ -105,11 +105,16 @@ export default class ExampleDnD extends Component { // ToDo: You can set your component area divider! // const areaLine = ["20px 20px", "220px 120px"]; + // You can set your style to dnd item. + const yourStyle = { + background: "blue" + }; + return (
{somethings.map(something => -
{something.name}
+
{something.name}
)}