Created
April 5, 2019 04:38
-
-
Save Weffe/dfae95dccf9e118905ab1d6fcac80b32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- dashboard.html --> | |
| {% block dojango_content %} | |
| <div id="root"></div> | |
| <script type="text/babel"> | |
| const App = () => ( | |
| <div> | |
| <h1>Hello World</h1> | |
| <p>This is React! Woo-hoo!</p> | |
| <p>Name -> {% firstof user.first_name user.username %}</p> | |
| </div> | |
| ) | |
| ReactDOM.render( | |
| <App />, | |
| document.getElementById('root') | |
| ); | |
| </script> | |
| <!-- BorderContainer for the entire page --> | |
| <div dojoType="dijit.layout.BorderContainer" id="borderContainerMain" style="width:100%;height:100%;" gutters="true"> | |
| ... | |
| ... | |
| ... | |
| <!-- This renders as --> | |
| <!-- <h1>Hello World</h1> | |
| <p>This is React! Woo-hoo!</p> | |
| <p>Name -> admin</p> | |
| --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment