mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
standard format + remove unnecessary react dependency (#492)
This commit is contained in:
parent
f7b9cb009f
commit
de57e92109
|
@ -74,17 +74,16 @@ const basePackage = `{
|
|||
|
||||
const basePage = `
|
||||
|
||||
import React from 'react'
|
||||
import Head from 'next/head'
|
||||
|
||||
export default () => (
|
||||
<div>
|
||||
<Head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1'/>
|
||||
<style>{bodyStyles}</style>
|
||||
</Head>
|
||||
|
||||
<img width="112" src="https://cloud.githubusercontent.com/assets/13041/19686250/971bf7f8-9ac0-11e6-975c-188defd82df1.png" alt="next.js" />
|
||||
<img width='112' src='https://cloud.githubusercontent.com/assets/13041/19686250/971bf7f8-9ac0-11e6-975c-188defd82df1.png' alt='next.js' />
|
||||
</div>
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue