You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.3 KiB
19 lines
1.3 KiB
3 months ago
|
import { addBanner, addArticle, addTitle, addHeader, addParagraph, addClassParagraph, addSubHeader, addOrderedList, addUnorderedList, addBlockquote, addInset, addInsetList, addInsetCodeListing, addInsetBulletList, addImageWithCaption, addButtonGroup, addSidebar, addSyntax, menu, global_menu } from '/scripts/import.js';
|
||
|
import { local_menu } from '/scripts/webdev.js';
|
||
|
|
||
|
const heading = document.querySelector(".heading");
|
||
|
const global = document.querySelector(".global_menu");
|
||
|
const local = document.querySelector(".local_menu");
|
||
|
const sidebar = document.querySelector(".sidebar");
|
||
|
const main = document.querySelector(".main_content");
|
||
|
|
||
|
heading.append(addTitle("Learning ReactJS"));
|
||
|
heading.append(addParagraph("Eve Porcello - LinkedIn Learning"));
|
||
|
heading.append(addParagraph("Conclusion"));
|
||
|
|
||
|
main.append(addSubHeader("Next Steps"));
|
||
|
main.append(addParagraph("The online documentation for React is pretty good and can be found at <a href=\"https://reactjs.org/docs/getting-started.html\">https://reactjs.org/docs/getting-started.html</a>. There is also a link there to tutorials and the React Community, both of which could be useful resources."));
|
||
|
main.append(addParagraph("Other useful areas for study may include React Native for creating Android and other native apps or GraphQL which can be useful when you want to be loading data into your app."));
|
||
|
|
||
|
addSidebar("webdev");
|