This repository was archived by the owner on Apr 15, 2020. It is now read-only.
HeavyAfricanLeopard
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"
};
```