diff --git a/QandA/frontend/src/SearchPage.tsx b/QandA/frontend/src/SearchPage.tsx
index 5d513a3..a1b54db 100644
--- a/QandA/frontend/src/SearchPage.tsx
+++ b/QandA/frontend/src/SearchPage.tsx
@@ -1,4 +1,15 @@
-import React from 'react';
-import { Page } from './Page';
+/** @jsxImportSource @emotion/react */
+import { css } from '@emotion/react';
-export const SearchPage = () => {null};
+import React from 'react';
+import { useSearchParams } from 'react-router-dom';
+
+import { Page } from './Page';
+import { QuestionList } from './QuestionList';
+import { searchQuestions, QuestionData } from './QuestionsData';
+
+export const SearchPage = () => {
+ const [searchParams] = useSearchParams();
+
+ return {null};
+};