Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
phonzammi committed Dec 15, 2024
1 parent d5390de commit 008773b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/full/components/Counter.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from "react";
import React, { useState } from 'react'

export function Counter() {
const [count, setCount] = useState(0);
const [count, setCount] = useState(0)

return (
<>
Expand All @@ -18,5 +18,5 @@ export function Counter() {
}
`}</style>
</>
);
)
}

0 comments on commit 008773b

Please sign in to comment.