-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: ユーザ一覧ページの作成 #22
base: dev
Are you sure you want to change the base?
fix: ユーザ一覧ページの作成 #22
Conversation
src/pages/admin/user-list.tsx
Outdated
@@ -1,5 +1,93 @@ | |||
import { Heading } from '@radix-ui/themes'; | |||
import { useState, useEffect } from "react"; | |||
import { Link } from "react-router-dom"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { Link } from '@radix-ui/themes';
を使って欲しいです!
それに伴って package.json
の react-router-dom
は不要そうです
やること
import { Link } from "react-router-dom";
を
import { Link } from '@radix-ui/themes';
にする
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
このファイルで書いている CSS が Bootstrap というライブラリの書き方になってそうです
このプロジェクトは Bootstrap ではなく Radix UI Themes を使っているためこちらで実装したいです
やること
全ての className を削除する
(Radix UI は別途対応する)
ユーザ一覧の画面を作ってみました。デザインはなにも考えてないです