3 April 2020

Single Line And Multiple Line Comments Syntax

  • Create Components folder under src folder
  • Add PropsChildEXP1.js file and add below Code
import React from "react";
import { TextView } from "react-native";

const SingleAndMultipleLineComments = () => {
  return (
    <View>
      <Text>Single Line And Multiple Line Comments Syntax</Text>
      <Text>Single Line Comments</Text>
      {/* <Text>Line 1</Text> */}
      <Text>Line 2</Text>
      <Text>Line 3</Text>
      <Text>Line 4</Text>
      <Text>Line 5</Text>
      <Text>Multiple Line Comments</Text>
      {/* <Text>Line 6</Text>
      <Text>Line 7</Text>
      <Text>Line 8</Text> */}
    </View>
  );
};
export default SingleAndMultipleLineComments;


No comments:

Post a Comment