This commit is contained in:
figureslibres
2019-07-02 18:24:52 +02:00
commit fc493ec5aa
20 changed files with 16495 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
import React from "react"
const IndexPage = ({data}) => {
return (
<div>
<b>Titre : </b>
{data.truc.title}
<br></br>
<b>Nombre de pages : </b>
{data.truc.pages}
<br></br>
<b>Doc Id : </b>
{data.truc.docid}
</div>
)}
export const query = graphql`
query MyQuery {
truc {
id
title
pages
docid
}
}
`
export default IndexPage