Skip to main content

8 docs tagged with "App Skeleton"

View All Tags

/node_modules

/node_modules is defined as: dir with all Dependency & their sub-Dependency & their sub-sub-Dependency & .... Topics on: . Read more: React, React Stack, CRA, A

/public

/public is defined as: dir to serve Static Content. Topics on: /public/index.html. Read more: React, React Stack, CRA, App Skeleton, Public, Static Content|Wiki

/public/index.html

/public/index.html is defined as: root HTML Web Page to serve App Component, entry point for Browser. Topics on: <div id='root'></div>. Read more: React, React

/src

/src is defined as: dir to add Source Code & other files to later Bundler into single Package. Topics on: /src/main.tsx, /src/index.js, /src/components/App.js.

/src/components/App.js

/src/components/App.js is defined as: root JS file to define App FC to import other Components. Topics on: !deprecated import React no longer required for JSX.

<div id='root'></div>

<div id='root'></div> is defined as: root container to render React App into. Topics on: why not just render directly to <body>?. Read more: React, React Stack,

app skeleton

app skeleton. Topics on: /node_modules, /public, /src, package.json, package-lock.json. Read more: React, React Stack, CRA, App Skeleton|FullStack Wiki by Roger

CRA

CRA is defined as: CRAp Scaffolding Dev tool to gen new React project with app skeleton & Boilerplate. Topics on: app skeleton, Boilerplate, Local Dev Server, C