react export
import React from 'react';
import {Text} from 'react-native';
export default function Cat() {
return (
<Text>Hello, I am your cat!</Text>
);
}
react export
import React from 'react';
import {Text} from 'react-native';
export default function Cat() {
return (
<Text>Hello, I am your cat!</Text>
);
}
export in react
/* ###### Export in React.js ###### */
// Exporting default export:
export default GIVEN_NAME
// Exporting named values:
export { PARA_NAME }
export component in
//Export single component in react.js
import React from "react";
function MyInfo() {
return (
<div>
<h1>Swapnil</h1>
<p>Hy this is Swapnil, I have no idea who I am</p>
<ul>
<li>Ladakh</li>
<li>Himachal Pradesh</li>
<li>Vellangiri Mountains</li>
</ul>
</div>
)
}
export default MyInfo
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us