Skip to content

Commit

Permalink
chore: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minjongbaek committed Dec 2, 2023
1 parent 8571a5e commit bd028f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/v1/bookShelf/BookShelf.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const BookShelf = ({ children }: { children: ReactNode }) => {
return <>{children}</>;
};

const Backgrond = () => {
const Background = () => {
return (
<div className="absolute bottom-0 w-full rounded-b-[inherit]">
<div className="h-[3rem] bg-[#F2ECDF] shadow-[0px_-3px_8px_0px_#F1F1F1_inset]" />
Expand Down Expand Up @@ -112,7 +112,7 @@ const Book = ({
);
};

BookShelf.Background = Backgrond;
BookShelf.Background = Background;
BookShelf.Info = Info;
BookShelf.Books = Books;

Expand Down

0 comments on commit bd028f2

Please sign in to comment.