rsnext/examples/panda-css/app/page.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

25 lines
701 B
TypeScript

import { css } from "@/styled-system/css";
import LinkWithAtomicStyle from "@/app/components/link-with-atomic-style";
import LinkWithAtomicRecipe from "@/app/components/link-with-atomic-recipe";
import LinkWithConfigRecipe from "@/app/components/link-with-config-recipe";
import LinkWithTextStyles from "@/app/components/link-with-text-styles";
const styles = css({
display: "flex",
flexDirection: "column",
alignItems: "center",
gap: "2rem",
p: "6rem",
minH: "100vh",
});
export default function Home() {
return (
<main className={styles}>
<LinkWithAtomicStyle />
<LinkWithAtomicRecipe />
<LinkWithConfigRecipe />
<LinkWithTextStyles />
</main>
);
}