bootsrap to do list app with local storage codepen code example
Example 1: hide urls in .env in react app
WARNING: Do not store any secrets (such as private API keys) in your React app!
Environment variables are embedded into the build, meaning anyone can view them by inspecting your app's files.
outside our src folder create .env file and add it to gitignore
REACT_APP_WEATHER_API_KEY=123456
inside where you want to access the variable
const API_KEY = process.env.REACT_APP_WEATHER_API_KEY;
make sure to restart the server
Example 2: How to implement Bootstrap 4 for Angular 2 ngb-pagination
export class HomeComponent implements OnInit {
currentPage = 1;
itemsPerPage = 5;
pageSize: number;
constructor() { }
public onPageChange(pageNum: number): void {
this.pageSize = this.itemsPerPage*(pageNum - 1);
}
public changePagesize(num: number): void {
this.itemsPerPage = this.pageSize + num;
}
}