mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-18 12:35:12 +00:00
11 lines
164 B
JavaScript
11 lines
164 B
JavaScript
/**
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { Text } from 'react-native';
|
|
|
|
const TextOnLayoutExample = () => <Text />;
|
|
|
|
export default TextOnLayoutExample;
|