| 1 | # Attribute Behavior Fixture |
| 2 | |
| 3 | **WIP:** This is an MVP, still needs polish. |
| 4 | |
| 5 | ### Known Issues |
| 6 | - There are currently two errors thrown when the page loads; |
| 7 | `SyntaxError: missing ; before statement` |
| 8 | |
| 9 | ## Instructions |
| 10 | |
| 11 | `yarn build --type=UMD_DEV react/index,react-dom && cd fixtures/attribute-behavior && yarn install && yarn dev` |
| 12 | |
| 13 | ## Interpretation |
| 14 | |
| 15 | Each row is an attribute which could be set on some DOM component. Some of |
| 16 | them are invalid or mis-capitalized or mixed up versions of real ones. |
| 17 | Each column is a value which can be passed to that attribute. |
| 18 | Every cell has a box on the left and a box on the right. |
| 19 | The left box shows the property (or attribute) assigned by the latest stable release of React, and the |
| 20 | right box shows the property (or attribute) assigned by the locally built version of React. |
| 21 | |
| 22 | Right now, we use a purple outline to call out cases where the assigned property |
| 23 | (or attribute) has changed between React 15 and 16. |
| 24 | |
| 25 | --- |
| 26 | |
| 27 | |
| 28 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). |
| 29 | |
| 30 | You can find the guide for how to do things in a CRA [here](https://github.com/facebook/create-react-app/blob/main/packages/cra-template/template/README.md). |