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
44 lines (39 loc) · 1.33 KB
/
Copy pathindex.tsx
File metadata and controls
44 lines (39 loc) · 1.33 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
/**
* 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';
import useBaseUrl from '@docusaurus/useBaseUrl';
import ThemedImage from '@theme/ThemedImage';
function Native() {
return (
<Section>
<SectionTitle
title="Native development for everyone"
description={
<>
React Native lets you create truly native apps and doesn't
compromise your users' experiences. It provides a core set of
platform agnostic native components like <code>View</code>,{' '}
<code>Text</code>, and <code>Image</code> that map directly to the
platform's native UI building blocks.
</>
}
/>
<ThemedImage
alt="A React Native UI pointing out native elements like Views, ScrollViews, and more"
className={styles.flyoutIllustration}
sources={{
light: useBaseUrl('/img/homepage/dissection.png'),
dark: useBaseUrl('/img/homepage/dissection-dark.png'),
}}
/>
</Section>
);
}
export default Native;