Skip to content

Instantly share code, notes, and snippets.

@SingAvi
Created May 5, 2021 12:07
Show Gist options
  • Save SingAvi/78a687ebd99cde89dd0f4f07f0a410c0 to your computer and use it in GitHub Desktop.
Save SingAvi/78a687ebd99cde89dd0f4f07f0a410c0 to your computer and use it in GitHub Desktop.
import React from 'react';
import Button from './components/button'
// Main App
function App() {
return (
<div className="App">
// Component Button : with props as -> "button_name" and pass any value.
<Button button_name="Press me !" />
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment