Skip to content

brigand/react-stocks

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project was bootstrapped with Create React App.

Below you will find some information on how to perform common tasks.
You can find the most recent version of this guide here.

Development

yarn install
yarnpkg start

Deployment to github pages

The following command will build the application and will push the changes to the gh-pages branch (automatically generated) when you run yarnpkg deploy for the first time.

yarnpkg deploy

If you do not have yarn installed, you can run it with npm as well:

npm install
npm run start

Description

  • This application fetches data from the given URL when the component loads.

    The Application structure is as follows:
├── public                        # Static public assets (not imported anywhere in source code)
├── src                           # Application source code
│   ├── components                # Components used for the application will be listed in this directory
│   │   └── Row.js                # Table component which renders the data from socket.
│   ├── pages                     # Contains all the different pages of the application
│   │   ├── App                   # Components used for the application will be listed in this directory
│   │   │   └── styles            # Components used for the application will be listed in this directory
│   │   │   │  ├── App.css        # css for the application
│   │   │   ├── App.js            # Main page of the application
│   ├── index.css                 # global css
│   ├── index.js                  # root file of the application
│   ├── routes.js                 # Routes for the whole application are defined here
├── .gitignore                    # contains files/folders which are to be ignored by the project in git.
├── package.json                  # package.json file that includes all the dependencies for the project
├── README.md                     # Contains documentation for the project.
└── yarn.lock                     # Locks package versions for yarn (generated automatically when using `yarn`)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 67.6%
  • HTML 17.2%
  • CSS 15.2%