July 2017
Intermediate to advanced
374 pages
8h
English
First of all, we will create a home view from which React will be called. So, let's create index.html, which has the following contents, in the template directory:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Flask react</title>
</head>
<body>
<div class="container">
<h1></h1>
<br>
<div id="react"></div>
</div>
<!-- scripts -->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ react/15.1.0/react.min.js"></script>
<script src="https://npmcdn.com/react- router@2.8.1/umd/ReactRouter.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/ libs/react/15.1.0/react-dom.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/ ...Read now
Unlock full access