From 195fd2da8033d8061973945926cdead25ecd5fad Mon Sep 17 00:00:00 2001 From: Vladimir Skrjabin Date: Wed, 6 Dec 2023 16:49:11 +0200 Subject: [PATCH] folder name changed --- src/app/cars/[carid]/page.jsx | 2 +- .../{information => singlepageCar}/CarInformation.jsx | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/components/{information => singlepageCar}/CarInformation.jsx (100%) diff --git a/src/app/cars/[carid]/page.jsx b/src/app/cars/[carid]/page.jsx index 14bc4e2..96367f9 100644 --- a/src/app/cars/[carid]/page.jsx +++ b/src/app/cars/[carid]/page.jsx @@ -1,7 +1,7 @@ import React from "react"; import axios from "axios"; import { cookies } from "next/headers"; -import CarInformation from "@/components/information/CarInformation"; +import CarInformation from "@/components/singlepageCar/CarInformation"; export async function getCar(carid) { diff --git a/src/components/information/CarInformation.jsx b/src/components/singlepageCar/CarInformation.jsx similarity index 100% rename from src/components/information/CarInformation.jsx rename to src/components/singlepageCar/CarInformation.jsx