Skip to content

Commit

Permalink
Merge pull request #30 from Kusitms-28th-Kobaco-B/fix/#27
Browse files Browse the repository at this point in the history
[fix] NavbarVariants 수정
  • Loading branch information
uiop5809 authored Mar 8, 2024
2 parents f4ba782 + 4f0df86 commit 64e6bfb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/common/Container.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";

import { ContainerAnimation } from "@/styles/animation";
import { NavbarVariants } from "@/styles/animation";
import { motion } from "framer-motion";
import styled from "styled-components";

Expand All @@ -9,9 +9,7 @@ interface ContainerProps {
}

const Container = ({ children }: ContainerProps) => {
return (
<ContainerStyle variants={ContainerAnimation}>{children}</ContainerStyle>
);
return <ContainerStyle variants={NavbarVariants}>{children}</ContainerStyle>;
};

export default Container;
Expand Down

0 comments on commit 64e6bfb

Please sign in to comment.