forked from react/react-native-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
65 lines (60 loc) · 1.94 KB
/
Copy pathindex.tsx
File metadata and controls
65 lines (60 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import React from 'react';
import Section from '../components/Section';
import SectionTitle from '../components/SectionTitle';
import styles from './styles.module.css';
function Watch() {
return (
<Section>
<SectionTitle
title="Watch and learn"
description={
<>
Watch talks by the React team and learn how to get the most out of
React Native. Find the latest on{' '}
<a href="https://twitter.com/intent/follow?screen_name=reactnative®ion=follow_link">
X
</a>
.
</>
}
/>
<div className={styles.videos}>
<div className={styles.videoContainer}>
<iframe
src="https://www.youtube.com/embed/NCAY0HIfrwc"
title="Mobile Innovation with React Native, ComponentKit, and Litho"
frameBorder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
className={styles.video}
/>
<div className={styles.videoInfo}>
<h4>FB 2019: Mobile innovation with React Native</h4>
<p>45:29</p>
</div>
</div>
<div className={styles.videoContainer}>
<iframe
src="https://www.youtube.com/embed/wUDeLT6WXnQ"
title="Explain Like I'm 5: React Native"
frameBorder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
className={styles.video}
/>
<div className={styles.videoInfo}>
<h4>Why React Native?</h4>
<p>1:42</p>
</div>
</div>
</div>
</Section>
);
}
export default Watch;