rsnext/examples/with-cookies-next/pages/index.tsx
Steven 4466ba436b
chore(examples): use default prettier for examples/templates (#60530)
## Description
This PR ensures that the default prettier config is used for examples
and templates.

This config is compatible with `prettier@3` as well (upgrading prettier
is bigger change that can be a future PR).

## Changes
- Updated `.prettierrc.json` in root with `"trailingComma": "es5"` (will
be needed upgrading to prettier@3)
- Added `examples/.prettierrc.json` with default config (this will
change every example)
- Added `packages/create-next-app/templates/.prettierrc.json` with
default config (this will change every template)

## Related

- Fixes #54402
- Closes #54409
2024-01-11 16:01:44 -07:00

34 lines
968 B
TypeScript

import React from "react";
import {
setCookie,
getCookies,
getCookie,
deleteCookie,
hasCookie,
} from "cookies-next";
const Home = () => {
const handleSetCookie = () => setCookie("client-cookie", "mock client value");
const handleCheckCookie = () => console.log(hasCookie("client-cookie"));
const handleGetCookie = () => console.log(getCookie("client-cookie"));
const handleGetCookies = () => console.log(getCookies());
const handleDeleteCookies = () => deleteCookie("client-cookie");
return (
<div>
<h1>Next Cookies</h1>
<button onClick={handleSetCookie}>Set Cookie</button>
<br />
<button onClick={handleCheckCookie}>Check Cookie</button>
<br />
<button onClick={handleGetCookie}>Get Cookie</button>
<br />
<button onClick={handleGetCookies}>Get All Cookies</button>
<br />
<button onClick={handleDeleteCookies}>Remove Cookies</button>
</div>
);
};
export default Home;