├── .gitignore ├── README.md ├── biome.json ├── cosmos.config.json ├── next.config.mjs ├── package.json ├── panda.config.ts ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── next.svg └── vercel.svg ├── setupTests.ts ├── src ├── app │ ├── common │ │ └── components │ │ │ ├── FilterList │ │ │ ├── FilterList.fixture.tsx │ │ │ ├── FilterList.stories.tsx │ │ │ ├── FilterList.test.tsx │ │ │ └── FilterList.tsx │ │ │ ├── SelectWithCombobox │ │ │ ├── README.md │ │ │ ├── SelectWithCombobox.fixture.tsx │ │ │ ├── SelectWithCombobox.stories.tsx │ │ │ ├── SelectWithCombobox.test.tsx │ │ │ └── SelectWithCombobox.tsx │ │ │ ├── Table │ │ │ ├── Table.fixture.tsx │ │ │ └── Table.test.tsx │ │ │ └── ds.ts │ ├── cosmos │ │ ├── Hello.fixture.tsx │ │ ├── README.md │ │ ├── [fixture] │ │ │ ├── cosmos.decorator.tsx │ │ │ └── page.tsx │ │ └── hello.test.tsx │ ├── domains │ │ ├── member │ │ │ └── MemberCreateForm │ │ │ │ ├── MemberCreateForm.fixture.tsx │ │ │ │ ├── MemberCreateForm.stories.tsx │ │ │ │ ├── MemberCreateForm.test.tsx │ │ │ │ ├── MemberCreateForm.tsx │ │ │ │ └── README.md │ │ └── saas │ │ │ └── SaasList │ │ │ ├── README.md │ │ │ ├── SaasList.fixture.tsx │ │ │ ├── SaasList.test.tsx │ │ │ ├── SaasList.tsx │ │ │ ├── SaasListItem.fixture.tsx │ │ │ ├── SaasListItem.test.tsx │ │ │ ├── SaasListItem.tsx │ │ │ ├── expected.png │ │ │ └── unstyled-no-image.png │ ├── favicon.ico │ ├── index.css │ ├── layout.tsx │ ├── page.tsx │ └── routing │ │ └── Link.tsx └── siheom │ ├── expectTL.ts │ ├── getA11ySnapshot.ts │ ├── getTableMarkdown.ts │ ├── queryTL.ts │ └── renderWithContext.tsx ├── tsconfig.json └── vitest.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/biome.json -------------------------------------------------------------------------------- /cosmos.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/cosmos.config.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/package.json -------------------------------------------------------------------------------- /panda.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/panda.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/setupTests.ts -------------------------------------------------------------------------------- /src/app/common/components/FilterList/FilterList.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/FilterList/FilterList.fixture.tsx -------------------------------------------------------------------------------- /src/app/common/components/FilterList/FilterList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/FilterList/FilterList.stories.tsx -------------------------------------------------------------------------------- /src/app/common/components/FilterList/FilterList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/FilterList/FilterList.test.tsx -------------------------------------------------------------------------------- /src/app/common/components/FilterList/FilterList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/FilterList/FilterList.tsx -------------------------------------------------------------------------------- /src/app/common/components/SelectWithCombobox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/SelectWithCombobox/README.md -------------------------------------------------------------------------------- /src/app/common/components/SelectWithCombobox/SelectWithCombobox.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/SelectWithCombobox/SelectWithCombobox.fixture.tsx -------------------------------------------------------------------------------- /src/app/common/components/SelectWithCombobox/SelectWithCombobox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/SelectWithCombobox/SelectWithCombobox.stories.tsx -------------------------------------------------------------------------------- /src/app/common/components/SelectWithCombobox/SelectWithCombobox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/SelectWithCombobox/SelectWithCombobox.test.tsx -------------------------------------------------------------------------------- /src/app/common/components/SelectWithCombobox/SelectWithCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/SelectWithCombobox/SelectWithCombobox.tsx -------------------------------------------------------------------------------- /src/app/common/components/Table/Table.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/Table/Table.fixture.tsx -------------------------------------------------------------------------------- /src/app/common/components/Table/Table.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/Table/Table.test.tsx -------------------------------------------------------------------------------- /src/app/common/components/ds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/common/components/ds.ts -------------------------------------------------------------------------------- /src/app/cosmos/Hello.fixture.tsx: -------------------------------------------------------------------------------- 1 | export default

Hello World!

; 2 | -------------------------------------------------------------------------------- /src/app/cosmos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/cosmos/README.md -------------------------------------------------------------------------------- /src/app/cosmos/[fixture]/cosmos.decorator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/cosmos/[fixture]/cosmos.decorator.tsx -------------------------------------------------------------------------------- /src/app/cosmos/[fixture]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/cosmos/[fixture]/page.tsx -------------------------------------------------------------------------------- /src/app/cosmos/hello.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/cosmos/hello.test.tsx -------------------------------------------------------------------------------- /src/app/domains/member/MemberCreateForm/MemberCreateForm.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/member/MemberCreateForm/MemberCreateForm.fixture.tsx -------------------------------------------------------------------------------- /src/app/domains/member/MemberCreateForm/MemberCreateForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/member/MemberCreateForm/MemberCreateForm.stories.tsx -------------------------------------------------------------------------------- /src/app/domains/member/MemberCreateForm/MemberCreateForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/member/MemberCreateForm/MemberCreateForm.test.tsx -------------------------------------------------------------------------------- /src/app/domains/member/MemberCreateForm/MemberCreateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/member/MemberCreateForm/MemberCreateForm.tsx -------------------------------------------------------------------------------- /src/app/domains/member/MemberCreateForm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/member/MemberCreateForm/README.md -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/README.md -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/SaasList.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/SaasList.fixture.tsx -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/SaasList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/SaasList.test.tsx -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/SaasList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/SaasList.tsx -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/SaasListItem.fixture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/SaasListItem.fixture.tsx -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/SaasListItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/SaasListItem.test.tsx -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/SaasListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/SaasListItem.tsx -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/expected.png -------------------------------------------------------------------------------- /src/app/domains/saas/SaasList/unstyled-no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/domains/saas/SaasList/unstyled-no-image.png -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/index.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/routing/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/app/routing/Link.tsx -------------------------------------------------------------------------------- /src/siheom/expectTL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/siheom/expectTL.ts -------------------------------------------------------------------------------- /src/siheom/getA11ySnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/siheom/getA11ySnapshot.ts -------------------------------------------------------------------------------- /src/siheom/getTableMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/siheom/getTableMarkdown.ts -------------------------------------------------------------------------------- /src/siheom/queryTL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/siheom/queryTL.ts -------------------------------------------------------------------------------- /src/siheom/renderWithContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/src/siheom/renderWithContext.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taehee-kim-sherpas/turing-frontend-test/HEAD/vitest.config.ts --------------------------------------------------------------------------------