Created
January 6, 2022 00:01
-
-
Save jmlon/e35b81ecb9fd9e1b85bb152dd9efe300 to your computer and use it in GitHub Desktop.
Main App component from solana_part1 example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import './App.css'; | |
import Connect2Phantom from './components/Connect2Phantom'; | |
function App() { | |
return ( | |
<div className="App"> | |
<header className="App-header"> | |
<h1>Solana Examples</h1> | |
<hr className="fullWidth" /> | |
<p>Hello there</p> | |
<Connect2Phantom/> | |
</header> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment