Initialize VideoCaching project

This commit is contained in:
Laurin Quast
2018-02-28 13:45:17 +01:00
parent 434b2b0f2a
commit 125225bd35
47 changed files with 7668 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import 'react-native';
import React from 'react';
import App from '../App';
// Note: test renderer must be required after react-native.
import renderer from 'react-test-renderer';
it('renders correctly', () => {
const tree = renderer.create(
<App />
);
});