Rachel Dawes

Rachel Dawes

  • 19
  • 4.7k
  • 9k

How to make native look app in React Native

Jun 4 2021 8:12 AM
import React, { useState } from 'react';

function Example() {
  // Declare a new state variable, which we'll call "count"
  const [count, setCount] = useState(0);

  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>
        Click me
      </button>
    </div>
  );
}

How to make native look app in React Native

 

 


Answers (3)