change single to double quotes

This commit is contained in:
Franek 2024-05-31 16:21:27 +02:00
parent 3a6acb5ef7
commit 4131de8692
No known key found for this signature in database
GPG Key ID: 0329F871B2079351
4 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
'use client'
"use client"
import { useRouter } from "next/navigation";
import styled from "styled-components";

View File

@ -1,4 +1,4 @@
'use client'
"use client"
import { Montserrat } from "next/font/google";
import { useState, useEffect } from "react";
@ -29,7 +29,7 @@ export default function RootLayout({
<html lang="en">
{/*
can't use next.Metadata,
because 'use client' + styled components are
because "use client" + styled components are
preventing it.
next/head wouldn't work too, so legacy solution is used

View File

@ -1,4 +1,4 @@
'use client'
"use client"
import { useTheme } from "@/providers/theme.provider";
import { Button } from "@/styles";

View File

@ -1,4 +1,4 @@
'use client'
"use client"
import styled, { createGlobalStyle } from "styled-components";