forked from shamahoque/mern-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.js
22 lines (22 loc) · 811 Bytes
/
template.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export default ({markup, css}) => {
return `<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MERN Marketplace</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
a{
text-decoration: none
}
</style>
</head>
<body style="margin:0">
<div id="root">${markup}</div>
<style id="jss-server-side">${css}</style>
<script id="stripe-js" src="https://js.stripe.com/v3/" async></script>
<script type="text/javascript" src="/dist/bundle.js"></script>
</body>
</html>`
}