blob: 4b052c496de1527db583a9abf69c95cb3edf8161 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function App() {
return (
<div className="App" role="main">
<article className="App-article">
<img src={"/bunlogo.svg"} className="App-logo" alt="logo" />
<div style={{ height: "30px" }}></div>
<h3>Welcome to Bun!</h3>
<div style={{ height: "10px" }}></div>
<a className="App-link" href="https://bun.sh/docs" target="_blank" rel="noopener noreferrer">
Read the docs →
</a>
</article>
</div>
);
}
export default App;
|