├── .eslintrc ├── .gitignore ├── README.md ├── app ├── enhancements │ └── island.tsx ├── entry.client.tsx ├── entry.server.tsx ├── islands │ └── counter.tsx ├── root.tsx └── routes │ ├── _script.ts │ └── index.tsx ├── package.json ├── public └── favicon.ico ├── remix.config.js ├── remix.env.d.ts ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/README.md -------------------------------------------------------------------------------- /app/enhancements/island.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/app/enhancements/island.tsx -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- 1 | // We don't actually hydrate the app in this example 2 | export {}; 3 | -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/islands/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/app/islands/counter.tsx -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/app/routes/_script.ts -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-preact-mpa-sprinkles/HEAD/yarn.lock --------------------------------------------------------------------------------