Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bun React template repository
# React SPA starter template

This is a template repository for `React` and `TypeScript` built with Bun. It uses `bun` instead of Node.js and `biome` instead of `prettier / eslint` for better performance.
This is a starter template for a React single-page application built with `TypeScript` and Bun. It uses `bun` instead of Node.js and `biome` instead of `prettier / eslint` for better performance.

## Start a new project from this template

Expand Down
130 changes: 0 additions & 130 deletions sbx-kits/asdf/files/home/.local/bin/asdf-utils.sh

This file was deleted.

10 changes: 0 additions & 10 deletions sbx-kits/asdf/files/home/.local/bin/install-asdf

This file was deleted.

43 changes: 0 additions & 43 deletions sbx-kits/asdf/files/home/.local/bin/sync-asdf-tools

This file was deleted.

18 changes: 0 additions & 18 deletions sbx-kits/asdf/files/home/.local/bin/update-asdf

This file was deleted.

23 changes: 0 additions & 23 deletions sbx-kits/asdf/spec.yml

This file was deleted.

5 changes: 0 additions & 5 deletions src/App.css

This file was deleted.

9 changes: 3 additions & 6 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import '@picocss/pico/css/pico.min.css'
import './App.css'

export default function App() {
return (
<main className="page">
<h1>Bun with React</h1>
<p>Start building amazing things with Bun.</p>
<main>
<h1>React SPA Starter template</h1>
<p>Build your SPA here...</p>
</main>
)
}
1 change: 1 addition & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import '@picocss/pico/css/pico.min.css';
5 changes: 3 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Prototype</title>
<link href="index.css" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
<div id="root" />
<script type="module" src="./index.tsx" />
</body>
</html>