Skip to content

Commit

Permalink
Fix/layout (#93)
Browse files Browse the repository at this point in the history
* 🐛 不要な文字を削除してコードをクリーンアップ

* 🐛 ボタンコンポーネントのクラス名を修正し、参加フォームへのボタンのレイアウトを改善

* 🐛 button-legacy.tsxでReactのインポートを修正し、JSX型を追加

* 🐛 slideshow.tsxでReactのインポートを修正し、JSX型を追加
  • Loading branch information
yuito-it authored Dec 18, 2024
1 parent 21c649c commit 70e69c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/button-legacy.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Link from "next/link";
import { ComponentPropsWithoutRef, Ref, forwardRef } from "react";
import { ComponentPropsWithoutRef, JSX, Ref, forwardRef } from "react";
const styles = {
commonDesign: "border-b text-white px-4 py-2 leading-none m-2",
linkDisabled: "opacity-50 cursor-not-allowed leading-none",
Expand Down
2 changes: 1 addition & 1 deletion src/components/slideshow.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client";
import React, { useEffect, useState } from 'react';
import React, { JSX, useEffect, useState } from 'react';
import Image from "next/image";

import { Autoplay, Navigation, Pagination } from "swiper/modules";
Expand Down

0 comments on commit 70e69c6

Please sign in to comment.