diff --git a/frontend/app/components/CardList/CardList.jsx b/frontend/app/components/CardList/CardList.jsx
new file mode 100644
index 0000000..8b5ce92
--- /dev/null
+++ b/frontend/app/components/CardList/CardList.jsx
@@ -0,0 +1,14 @@
+import { ReleaseCard } from "@/app/components/ReleaseCard/ReleaseCard";
+
+export const CardList = (props) => {
+ return props.data.map((item) => {
+ return (
+
+ );
+ });
+};
diff --git a/frontend/app/components/NavigationRail/NavigationRail.js b/frontend/app/components/NavigationRail/NavigationRail.jsx
similarity index 90%
rename from frontend/app/components/NavigationRail/NavigationRail.js
rename to frontend/app/components/NavigationRail/NavigationRail.jsx
index 6c79f01..269f66d 100644
--- a/frontend/app/components/NavigationRail/NavigationRail.js
+++ b/frontend/app/components/NavigationRail/NavigationRail.jsx
@@ -45,7 +45,7 @@ export const NavigationRail = () => {
share
*/}
-