From f95db3a6d7ff5ba5f16fae0c0bceb23a181ffe04 Mon Sep 17 00:00:00 2001 From: James Stavros Date: Thu, 26 May 2016 23:57:02 -0500 Subject: [PATCH] Added React import to android VideoPlayer Example Import for React was missing in index.android.js of VideoPlayer, without which the example would not run. --- Examples/VideoPlayer/index.android.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/VideoPlayer/index.android.js b/Examples/VideoPlayer/index.android.js index c5a000a5..95bda64c 100644 --- a/Examples/VideoPlayer/index.android.js +++ b/Examples/VideoPlayer/index.android.js @@ -1,6 +1,6 @@ 'use strict'; -import { +import React, { Component } from 'react';