├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── file-text.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── src ├── app │ ├── countries-broken │ │ └── page.tsx │ ├── countries-fixed │ │ └── page.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── providers.tsx │ └── simple-cases │ │ └── page.tsx ├── components │ ├── button.tsx │ ├── countries-broken.tsx │ ├── countries-fixed.tsx │ ├── input.tsx │ ├── simple-cases.tsx │ ├── table.tsx │ └── very-slow-component.tsx └── helpers │ ├── cn.ts │ ├── log-on-re-render.ts │ └── resources.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/public/file-text.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/public/window.svg -------------------------------------------------------------------------------- /src/app/countries-broken/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/countries-broken/page.tsx -------------------------------------------------------------------------------- /src/app/countries-fixed/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/countries-fixed/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/simple-cases/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/app/simple-cases/page.tsx -------------------------------------------------------------------------------- /src/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/components/button.tsx -------------------------------------------------------------------------------- /src/components/countries-broken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/components/countries-broken.tsx -------------------------------------------------------------------------------- /src/components/countries-fixed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/components/countries-fixed.tsx -------------------------------------------------------------------------------- /src/components/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/components/input.tsx -------------------------------------------------------------------------------- /src/components/simple-cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/components/simple-cases.tsx -------------------------------------------------------------------------------- /src/components/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/components/table.tsx -------------------------------------------------------------------------------- /src/components/very-slow-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/components/very-slow-component.tsx -------------------------------------------------------------------------------- /src/helpers/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/helpers/cn.ts -------------------------------------------------------------------------------- /src/helpers/log-on-re-render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/helpers/log-on-re-render.ts -------------------------------------------------------------------------------- /src/helpers/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/src/helpers/resources.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/react-compiler-test/HEAD/tsconfig.json --------------------------------------------------------------------------------