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

Commit 193e497

Browse files
stevemaofacebook-github-bot
authored andcommitted
no "use strict" in es modules
Summary: Thanks for submitting a PR! Please read these instructions carefully: - [ ] Explain the **motivation** for making this change. - [ ] Provide a **test plan** demonstrating that the code is solid. - [ ] Match the **code formatting** of the rest of the codebase. ## Motivation (required) What existing problem does the pull request solve? no "use strict" in es modules ## Test Plan (required) A good test plan has the exact commands you ran and their output, provides screenshots or videos if the pull request changes UI or updates the website. See [What is a Test Plan?][1] to learn more. If you have added code that should be tested, add tests. ## Next Steps Sign the [CLA][2], if you haven't already. Small pull requests are much easier to review and more likely to get merged. Make sure the PR does only one thing, otherwise please split it. Make sure all **tests pass** on [Circle CI][3]. PRs that break tests are unlikely to be merged. For more info, see the ["Pull Requests"][4] s Closes #103 Differential Revision: D4930293 Pulled By: andrewimm fbshipit-source-id: 4c453bf
1 parent 0c9c4a8 commit 193e497

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

docs/Tutorial.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ previous: getting-started
1212
In accordance with the ancient traditions of our people, our first React VR project doesn't do much other than display "hello" over a panorama. You can look at its source code file `index.vr.js` in the starter project folder. This file is the entry point for your React VR application.
1313

1414
```
15-
'use strict';
1615
import React from 'react';
1716
import { AppRegistry, asset, Pano, Text, View } from 'react-vr';
1817
@@ -93,4 +92,4 @@ Our Hello World sample defines `WelcomeToVR` as a new `Component` and registers
9392
You don't need to think about `AppRegistry` a lot, as there will probably just be one call to `AppRegistry.registerComponent` in the whole app.
9493
It is included above so that you can paste the whole thing into your `index.vr.js` file and get it running.
9594

96-
When you're building a React VR app, you'll be making lots of new components. Anything you see on the screen is some sort of component. A component can be very simple; the only thing that's required is a `render` function that returns some JSX to render.
95+
When you're building a React VR app, you'll be making lots of new components. Anything you see on the screen is some sort of component. A component can be very simple; the only thing that's required is a `render` function that returns some JSX to render.

0 commit comments

Comments
 (0)