diff --git a/app/(route)/indicators/_components/result/index.tsx b/app/(route)/indicators/_components/result/index.tsx index 9d8bdc4..3352f8f 100644 --- a/app/(route)/indicators/_components/result/index.tsx +++ b/app/(route)/indicators/_components/result/index.tsx @@ -1,17 +1,39 @@ import Nav from '@/app/_common/nav' import Title from '@/app/_common/text/title' +import { investmentItemAtom, totalinputValueAtom } from '@/app/_store/atom' +import { useRecoilValue } from 'recoil' import S from './result.module.css' +//* 결과페이지 입니다. //TODO: 사용자가 클릭한 아이디어 이름과 해당 툴을 사용한 사용자 수가 보여집니다. function Result() { + const selectedItem = useRecoilValue(investmentItemAtom) + const totalinputValue = parseInt(useRecoilValue(totalinputValueAtom)) + return (