Skip to content
Open
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
6 changes: 5 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import './App.css'
import './App.css';
import Header from './components/Header';

function App() {


return (
<div className="card">
<Header />
<h1>Hello React</h1>
<p>This is a clean React + Vite project.</p>
<button onClick={() => alert('Clicked!')}>Click Me</button>
Expand Down
8 changes: 8 additions & 0 deletions src/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Contributing to vite-react-starter

Thank you for helping improve this project! 🚀

## 🧾 How to Contribute

1. Fork the repo on GitHub
2. Clone it:
21 changes: 21 additions & 0 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# vite-react-starter

A simple, fast, and clean **Vite + React** starter project — ready for contributions.

## 🚀 Features

- ⚡ Vite for fast dev & build
- ⚛️ React 18+
- 🎨 Plain CSS (no frameworks)
- 🧼 Clean structure for beginners
- 🧪 Ready for enhancements

---

## 🛠 Installation

```bash
git clone https://github.com/nnoonnnn/vite-react-starter.git
cd vite-react-starter
npm install
npm run dev
6 changes: 6 additions & 0 deletions src/components/Header.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@


function Header() {
return <h1>Welcome to Vite React Starter!</h1>;
}
export default Header