10 lines
No EOL
231 B
TypeScript
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>
|
|
)
|
|
} |