Remove semi-colons after class definition

Summary:
None of the preceding code examples have semi-colons after the class definition (because they're not necessary):

- https://facebook.github.io/react-native/docs/tutorial.html
- https://facebook.github.io/react-native/docs/props.html
- https://facebook.github.io/react-native/docs/state.html
- https://facebook.github.io/react-native/docs/style.html

For consistency, I removed them 👍
Closes https://github.com/facebook/react-native/pull/12616

Differential Revision: D4651704

fbshipit-source-id: e59fa37c82d61728bc8ee28c7109717bd10635c2
This commit is contained in:
Jack Stevens 2017-03-03 12:18:51 -08:00 committed by Facebook Github Bot
parent 3e9dedf1ac
commit 8174a0dc08

View File

@ -28,7 +28,7 @@ class FixedDimensionsBasics extends Component {
</View>
);
}
};
}
AppRegistry.registerComponent('AwesomeProject', () => FixedDimensionsBasics);
```
@ -58,7 +58,7 @@ class FlexDimensionsBasics extends Component {
</View>
);
}
};
}
AppRegistry.registerComponent('AwesomeProject', () => FlexDimensionsBasics);
```