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
1 change: 1 addition & 0 deletions packages/create-vite/template-react-ts/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
border: 2px solid transparent;
transition: border-color 0.3s;
margin-bottom: 24px;
cursor: pointer;

&:hover {
border-color: var(--accent-border);
Expand Down
1 change: 1 addition & 0 deletions packages/create-vite/template-react-ts/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ function App() {
</p>
</div>
<button
type="button"
className="counter"
onClick={() => setCount((count) => count + 1)}
>
Expand Down
1 change: 1 addition & 0 deletions packages/create-vite/template-react/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
border: 2px solid transparent;
transition: border-color 0.3s;
margin-bottom: 24px;
cursor: pointer;

&:hover {
border-color: var(--accent-border);
Expand Down
1 change: 1 addition & 0 deletions packages/create-vite/template-react/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ function App() {
</p>
</div>
<button
type="button"
className="counter"
onClick={() => setCount((count) => count + 1)}
>
Expand Down
Loading