survey-webapp/SurveyFrontend/src/components/Results/Results.tsx
2025-04-28 11:09:38 +05:00

10 lines
No EOL
231 B
TypeScript

import SurveyInfo from "../SurveyInfo/SurveyInfo.tsx";
import styles from './Results.module.css'
export const Results = () => {
return(
<div className={styles.results}>
<SurveyInfo />
</div>
)
}