File tree Expand file tree Collapse file tree 5 files changed +16
-34
lines changed
Expand file tree Collapse file tree 5 files changed +16
-34
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4040 text-decoration : none;
4141 font-weight : bold;
4242}
43+
44+ * ,
45+ * ::before ,
46+ * ::after {
47+ box-sizing : border-box;
48+ margin : 0 ;
49+ font-weight : normal;
50+ }
Original file line number Diff line number Diff line change 2424 </ head >
2525 < body class ="flex flex-col ">
2626 < div class ="flex ">
27- < nav data-component ="nav "> </ nav >
2827<!--
29- <nav data-component="nav" data-header-bar="true" data-burger-px="600" ></nav>
28+ <nav data-component="nav"></nav>
3029-->
30+ < nav data-component ="nav " data-header-bar ="true " data-burger-px ="600 "> </ nav >
3131 < main data-component ="router " data-use-hash style ="padding: 1rem; width: 100% ">
3232 <!--components in /pages that will be fetched by router when user clicks on a -->
3333 </ main >
Original file line number Diff line number Diff line change 1+ // File: routes/form.js
2+ // Purpose: A simple form to test the form components
3+
14export default ( hostComponent ) => {
25 hostComponent . innerHTML = '' ;
36
Original file line number Diff line number Diff line change 1+ // File js/store.js
2+ // Purpose: Create a store object to manage shared state and dispatch events when state changes
3+
14export const store = ( ( ) => {
25 let state = {
36 sharedCount : 0 ,
You can’t perform that action at this time.
0 commit comments