Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/components/Layout/Feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ function SendFeedback({onSubmit}: {onSubmit: () => void}) {
const [isSubmitted, setIsSubmitted] = useState(false);
return (
<div className="max-w-xs w-80 lg:w-auto py-3 shadow-lg rounded-lg m-4 bg-wash dark:bg-gray-95 px-4 flex">
<p className="w-full font-bold text-primary dark:text-primary-dark text-lg me-4">
{isSubmitted ? 'Thank you for your feedback!' : 'Is this page useful?'}
<p className="w-full font-bold text-primary dark:text-primary-dark text-lg mr-4">
{isSubmitted
? 'Санал өгсөнд баярлалаа!'
: 'Энэ хуудас хэрэг болж байна уу?'}
</p>
{!isSubmitted && (
<button
Expand Down
4 changes: 1 addition & 3 deletions src/components/Layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -319,9 +319,7 @@ export function Footer() {
<FooterLink href="/community/docs-contributors">
Docs Contributors
</FooterLink>
<FooterLink href="/community/acknowledgements">
Талархал
</FooterLink>
<FooterLink href="/community/acknowledgements">Талархал</FooterLink>
</div>
<div className="flex flex-col">
<FooterLink isHeader={true}>Илүү их</FooterLink>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout/HomeContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ export function HomeContent() {
<div className="mt-20 px-5 lg:px-0 mb-6 max-w-4xl text-center text-opacity-80">
<Logo className="text-link dark:text-link-dark w-24 lg:w-28 mb-10 lg:mb-8 mt-12 h-auto mx-auto self-start" />
<Header>
React-ын нэгдэлд <br className="hidden lg:inline" />
React-ын нэгдэлд <br className="" />
тавтай морилно уу
</Header>
<ButtonLink
Expand Down
8 changes: 7 additions & 1 deletion src/content/community/conferences.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,14 @@ August 17 & 18, 2023. Salt Lake City, UT, USA

[Website](https://www.reactrally.com/) - [Twitter](https://twitter.com/ReactRally) - [Instagram](https://www.instagram.com/reactrally/)

### React Native EU 2023 {/*react-native-eu-2023*/}
September 7 & 8, 2023. Wrocław, Poland

[Website](https://react-native.eu) - [Twitter](https://twitter.com/react_native_eu) - [Facebook](https://www.facebook.com/reactnativeeu)


### React India 2023 {/*react-india-2023*/}
Oct 5 - 7, 2023. In-person in Goa, India (hybrid event) + Oct 3 2023 - remote day
October 5 - 7, 2023. In-person in Goa, India (hybrid event) + Oct 3 2023 - remote day

[Website](https://www.reactindia.io) - [Twitter](https://twitter.com/react_india) - [Facebook](https://www.facebook.com/ReactJSIndia) - [Youtube](https://www.youtube.com/channel/UCaFbHCBkPvVv1bWs_jwYt3w)

Expand Down
8 changes: 5 additions & 3 deletions src/content/reference/react/use-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ When a file marked `'use client'` is imported from a server component, [compatib
## Usage {/*usage*/}

<Wip>
This section is a work in progress.

This section is incomplete. See also the [Next.js documentation for Server Components](https://beta.nextjs.org/docs/rendering/server-and-client-components).

</Wip>
This API can be used in any framework that supports React Server Components. You may find additional documentation from them.
* [Next.js documentation](https://nextjs.org/docs/getting-started/react-essentials)
* More coming soon
</Wip>
8 changes: 5 additions & 3 deletions src/content/reference/react/use-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ Alternatively, add `'use server';` at the very top of a file to mark all exports
## Usage {/*usage*/}

<Wip>
This section is a work in progress.

This section is incomplete. See also the [Next.js documentation for Server Components](https://beta.nextjs.org/docs/rendering/server-and-client-components).

</Wip>
This API can be used in any framework that supports React Server Components. You may find additional documentation from them.
* [Next.js documentation](https://nextjs.org/docs/getting-started/react-essentials)
* More coming soon
</Wip>