From a904bdef64f66beb246ef5f00edbf0cbf56625e8 Mon Sep 17 00:00:00 2001 From: sylvaindethier Date: Sat, 20 Feb 2016 21:31:02 +0100 Subject: [PATCH] remove API --- API.md | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 API.md diff --git a/API.md b/API.md deleted file mode 100644 index a50f97e..0000000 --- a/API.md +++ /dev/null @@ -1,10 +0,0 @@ -# ReactCustomProps API - -## custom(props [,childPath]) -The `custom` function returns a function that evaluates the custom props at the given child path. Custom props functions are resolved with the passed in arguments. -```javascript -// root resolver -const resolver = custom(props); -// root custom props resolved -const customProps = resolver() -```