Introduce prettier

This commit is contained in:
Takeshi Kimata
2024-05-19 21:06:49 +09:00
parent 75eeebefda
commit c5ba3b9a00
52 changed files with 884 additions and 1509 deletions

View File

@@ -1,7 +1,7 @@
"use client";
'use client';
import { useState } from "react";
import { Button } from "@nextui-org/button";
import { useState } from 'react';
import { Button } from '@nextui-org/button';
export const Counter = () => {
const [count, setCount] = useState(0);