
- 실행한 쿼리의 결과 테이블을 확인할 수 있다.
- 왼쪽 사이드바에서 PUT, GET, RANGE, DELETE 쿼리를 실행할 수 있다.
- 결과 테이블 아래에서 실행한 쿼리 로그를 확인할 수 있다.
- 쿼리 로그를 클릭하면 해당 쿼리의 결과 테이블로 변경된다.

- 쿼리 실행 버튼을 클릭 시 제출할 수 있는 form이 생성된다.
- execute 버튼을 클릭시 쿼리가 데이터베이스로 제출된다.
- npm install로 의존성 설치
- npm install -D tailwindcss postcss autoprefixer로 tailwind 의존성 다운로드
- npx tailwindcss init으로 tailwind 의존성 init
- tailwind.config.js를 다음과 같이 작성
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: ["./src/**/*.{jsx,js}"],
theme: {
extend: {
colors: {
'matisse': '#355F7D',
},
},
extend: {},
},
plugins: [],
}