Skip to content
This repository was archived by the owner on Apr 15, 2020. It is now read-only.

HeavyAfricanLeopard

Choose a tag to compare

@dxinteractive dxinteractive released this 19 Apr 00:42
· 76 commits to master since this release

EntityEditor higher order component now passes down a names prop containing entity names.

Names is an object that contains strings representing the names of the entity, It contains singular, plural, caplitalized singular and capitalized plural in the following object shape using "cat" as an example:

```
names = {
  item: "cat",
  items: "cats",
  Item: "Cat",
  Items: "Cats"
};
```