Skip to content

Instantly share code, notes, and snippets.

@Weffe
Created April 5, 2019 04:38
Show Gist options
  • Select an option

  • Save Weffe/dfae95dccf9e118905ab1d6fcac80b32 to your computer and use it in GitHub Desktop.

Select an option

Save Weffe/dfae95dccf9e118905ab1d6fcac80b32 to your computer and use it in GitHub Desktop.
<!-- 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