![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FXO6ci%2FbtsMdspplju%2F4kInkDsrKd7RyraghFkExK%2Fimg.gif)
shadcnUI로 다크모드 구현하기![](https://tistory1.daumcdn.net/tistory_admin/blogs/image/category/new_ico_5.gif)
![](https://tistory1.daumcdn.net/tistory_admin/blogs/image/category/new_ico_5.gif)
·
기록
0. shadcn-ui로 다크모드shadcnui로 다크모드를 쉽게 개발 가능합니다.'use client'import * as React from 'react'import { ThemeProvider as NextThemesProvider } from 'next-themes'export function ThemeProvider({ children, ...props}: React.ComponentProps) { return {children}}export default async function RootLayout({ children,}: Readonly) { const currentUser = await getCurrentUser() return ( ..