2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

はじめに

flowbiteをRemixのプロジェクトに導入したのですが、うまくスタイルが当たらなかったのでまとめます

問題

以下のチュートリアル通りに設定をしたところボタンがうまく表示されませんでした
真っ白なボタンになってしまい、文字は表示されませんでした

import { Tooltip, Button } from "flowbite-react";

export default function Index() {
  return (
    <div>
      <h1>Welcome to Remix</h1>
      <Tooltip content="Flowbite is awesome">
      <Button>
        Hover to find out
      </Button>
    </Tooltip>
    </div>
  );
}

解決方法

flowbiteをアンインストールしたら解決しました
flowbite-reactが入っていれば問題なかったようです

おわりに

とりあえず使ってみようかなと思います

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?