{"data":{"tags":["react","starter"],"inserted_at":"2017-04-01T14:30:32","draft":false,"owned":false,"picks":[],"privacy":0,"like_count":3144,"template":"create-react-app","fork_count":9080644,"collection":false,"title":"React","always_on":false,"authorization":"read","updated_at":"2024-12-06T15:10:09","team":{"id":"ws_DNQqWvbk95iDFp1rPPRMqK","name":"CodeSandbox","settings":{"ai_consent":{"public_sandboxes":true,"private_sandboxes":true}},"subscription_type":null,"avatar_url":"https://uploads.codesandbox.io/uploads/avatars/FdTY-CodeSandbox+Square+Logo.png"},"source_id":"src_EKGGxnuztHL31MU4Rahazr","preview_secret":null,"is_frozen":true,"git":null,"directories":[{"id":"dir_SzUi2j6KkCxZYzmHqX2Qba","title":"src","inserted_at":"2018-02-07T14:00:49","updated_at":"2018-02-07T14:00:49","shortid":"GXOoy","source_id":"src_EKGGxnuztHL31MU4Rahazr","directory_shortid":null},{"id":"dir_HW275ShhHxgt5Jn35eJbCf","title":"public","inserted_at":"2018-02-07T14:04:34","updated_at":"2018-02-07T14:04:34","shortid":"rgkK4","source_id":"src_EKGGxnuztHL31MU4Rahazr","directory_shortid":null}],"entry":"src/index.js","pr_number":null,"custom_template":{"id":"sbtempl_8yyBu41wTTFik8Akr9VegS","title":"React","v2":false,"color":"#61DAFB","url":null,"published":false,"sdk":false,"icon_url":"ReactIcon","official":false},"description":"React example starter project","free_plan_editing_restricted":false,"alias":"react-new","restricted":false,"npm_dependencies":{"react":"16.0.0","react-dom":"16.0.0"},"modules":[{"code":"<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\">\n\t<meta name=\"theme-color\" content=\"#000000\">\n\t<!--\n      manifest.json provides metadata used when your web app is added to the\n      homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/\n    -->\n\t<link rel=\"manifest\" href=\"%PUBLIC_URL%/manifest.json\">\n\t<link rel=\"shortcut icon\" href=\"%PUBLIC_URL%/favicon.ico\">\n\t<!--\n      Notice the use of %PUBLIC_URL% in the tags above.\n      It will be replaced with the URL of the `public` folder during the build.\n      Only files inside the `public` folder can be referenced from the HTML.\n\n      Unlike \"/favicon.ico\" or \"favicon.ico\", \"%PUBLIC_URL%/favicon.ico\" will\n      work correctly both with client-side routing and a non-root public URL.\n      Learn how to configure a non-root public URL by running `npm run build`.\n    -->\n\t<title>React App</title>\n</head>\n\n<body>\n\t<noscript>\n\t\tYou need to enable JavaScript to run this app.\n\t</noscript>\n\t<div id=\"root\"></div>\n\t<!--\n      This HTML file is a template.\n      If you open it directly in the browser, you will see an empty page.\n\n      You can add webfonts, meta tags, or analytics to this file.\n      The build step will place the bundled scripts into the <body> tag.\n\n      To begin the development, run `npm start` or `yarn start`.\n      To create a production bundle, use `npm run build` or `yarn build`.\n    -->\n</body>\n\n</html>","id":"mod_LJfF7cjfRboA55znUiQtzH","is_binary":false,"title":"index.html","sha":null,"inserted_at":"2017-04-08T15:19:04","updated_at":"2018-02-07T14:06:13","upload_id":null,"shortid":"BA1N","source_id":"src_EKGGxnuztHL31MU4Rahazr","directory_shortid":"rgkK4"},{"code":".App {\n  font-family: sans-serif;\n  text-align: center;\n}\n","id":"mod_K3h5cAHG2VgtdxHpG1rzzP","is_binary":false,"title":"styles.css","sha":null,"inserted_at":"2018-06-09T21:51:56","updated_at":"2018-06-09T22:03:25","upload_id":null,"shortid":"qZyB7","source_id":"src_EKGGxnuztHL31MU4Rahazr","directory_shortid":"GXOoy"},{"code":"{\n  \"parser\": \"@typescript-eslint/parser\"\n}","id":"mod_35nsgfAgFvBhetJESr12r3","is_binary":false,"title":".eslintrc.json","sha":null,"inserted_at":"2024-02-01T13:52:03","updated_at":"2024-02-01T13:52:03","upload_id":null,"shortid":"Zrp18","source_id":"src_EKGGxnuztHL31MU4Rahazr","directory_shortid":null},{"code":"import { StrictMode } from \"react\";\nimport { createRoot } from \"react-dom/client\";\n\nimport App from \"./App\";\n\nconst rootElement = document.getElementById(\"root\");\nconst root = createRoot(rootElement);\n\nroot.render(\n  <StrictMode>\n    <App />\n  </StrictMode>\n);\n","id":"mod_K6UxWWy1AocRUNh442cDMj","is_binary":false,"title":"index.js","sha":null,"inserted_at":"2017-04-01T14:30:32","updated_at":"2022-03-30T09:47:25","upload_id":null,"shortid":"wRo98","source_id":"src_EKGGxnuztHL31MU4Rahazr","directory_shortid":"GXOoy"},{"code":"{\n  \"name\": \"react\",\n  \"version\": \"1.0.0\",\n  \"description\": \"\",\n  \"keywords\": [],\n  \"main\": \"src/index.tsx\",\n  \"dependencies\": {\n    \"react\": \"^19.0.0\",\n    \"react-dom\": \"^19.0.0\",\n    \"react-scripts\": \"^5.0.0\"\n  },\n  \"devDependencies\": {\n    \"@types/react\": \"19.0.0\",\n    \"@types/react-dom\": \"19.0.0\",\n    \"loader-utils\": \"3.2.1\",\n    \"typescript\": \"5.7.2\"\n  },\n  \"scripts\": {\n    \"start\": \"react-scripts start\",\n    \"build\": \"react-scripts build\",\n    \"test\": \"react-scripts test --env=jsdom\",\n    \"eject\": \"react-scripts eject\"\n  },\n  \"browserslist\": [\">0.2%\", \"not dead\", \"not ie <= 11\", \"not op_mini all\"]\n}\n","id":"mod_UKaxg8A9minnxoLzMkPhVT","is_binary":false,"title":"package.json","sha":null,"inserted_at":"2018-02-07T14:00:44","updated_at":"2024-12-06T15:09:55","upload_id":null,"shortid":"ZGQK6","source_id":"src_EKGGxnuztHL31MU4Rahazr","directory_shortid":null},{"code":"import \"./styles.css\";\n\nexport default function App() {\n  return (\n    <div className=\"App\">\n      <h1>Hello CodeSandbox</h1>\n      <h2>Start editing to see some magic happen!</h2>\n    </div>\n  );\n}\n","id":"mod_WHhFcnkzkCEJkJ9ESYio1t","is_binary":false,"title":"App.js","sha":null,"inserted_at":"2020-01-06T13:05:09","updated_at":"2023-11-16T19:30:47","upload_id":null,"shortid":"5QyoA","source_id":"src_EKGGxnuztHL31MU4Rahazr","directory_shortid":"GXOoy"}],"external_resources":[],"restrictions":{"free_plan_editing_restricted":false,"live_sessions_restricted":true},"feature_flags":{"comments":false,"container_lsp":false},"original_git_commit_sha":null,"view_count":336999455,"version":889,"user_liked":false,"forked_template_sandbox":null,"sdk":false,"forked_template":null,"id":"new","base_git":null,"forked_from_sandbox":null,"original_git":null,"screenshot_url":"https://screenshots.codesandbox.io/new/889.png","ai_consent":true,"room_id":null,"settings":{"ai_consent":null,"use_pint":false},"permissions":{"prevent_sandbox_export":false,"prevent_sandbox_leaving":false},"is_sse":false,"author":{"id":"user_GCCbomU5Tncd3xEtYtWbKE","name":"Ives van Hoorne","username":"CompuIves","avatar_url":"https://avatars.githubusercontent.com/u/587016?v=4","personal_workspace_id":"ws_GwGBephhu7ZCFT2UQna1UC","subscription_plan":null,"subscription_since":null},"v2":false,"npm_registries":[{"limit_to_scopes":true,"enabled_scopes":[],"registry_url":"/api/v1/sandboxes/new/npm_registry/","proxy_enabled":true}]}}