J'espère que vous avec apprécié cette présentation!
Liens utiles:
I hope you liked this introduction to React Server Components! 😊
Feel free to give your feedback about the presentation 👇👇👇
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const logo = ` | |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000px" height="1000px" viewBox="0 0 1000 1000" version="1.1"> | |
<!-- Generator: Sketch 64 (93537) - https://sketch.com --> | |
<title>Artboard</title> | |
<desc>Created with Sketch.</desc> | |
<defs> | |
<radialGradient cx="79.1305263%" cy="87.6448158%" fx="79.1305263%" fy="87.6448158%" r="96.9897763%" id="radialGradient-1"> | |
<stop stop-color="#2440E6" offset="0%"/> | |
<stop stop-color="#5661B3" offset="100%"/> | |
</radialGradient> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("Hello World!"); | |
// --------------- Variables --------------- | |
let count = 12; | |
console.log(count); | |
count = count + 1; | |
console.log(count); | |
const firstName = 'John'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Head from 'next/head' | |
export const SeoHeaders = ({ | |
title, | |
description, | |
author, | |
twitterAuthor, | |
twitterSite, | |
url, | |
imageUrl, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
echo "Hello!"; | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: pdf epub kindle html examples | |
BOOK_TITLE = A\ React\ Developer’s\ Guide\ to\ Hooks\ -\ Sebastien\ Castiel | |
dist: | |
@mkdir -p dist | |
pdf: dist/${BOOK_TITLE}.pdf | |
@echo '✅ PDF' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation { | |
createUser(name: "Sébastien") { | |
id | |
name | |
} | |
} | |
mutation { | |
createUser(name: "Mary") { | |
id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.0; | |
contract WakeMeUp { | |
event Print(string _name, uint _value); | |
event PrintString(string _name, bytes32 _value); | |
struct Alarm { | |
uint id; | |
address owner; |
NewerOlder