Skip to content

Instantly share code, notes, and snippets.

@jmlon
Created January 6, 2022 00:01
Show Gist options
  • Save jmlon/e35b81ecb9fd9e1b85bb152dd9efe300 to your computer and use it in GitHub Desktop.
Save jmlon/e35b81ecb9fd9e1b85bb152dd9efe300 to your computer and use it in GitHub Desktop.
Main App component from solana_part1 example
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