docs: tweaks

This commit is contained in:
Maciej Jastrzębski
2026-05-28 17:43:31 +02:00
parent 2c32ce75df
commit e2f41610dc
3 changed files with 9 additions and 10 deletions
+4 -4
View File
@@ -8,10 +8,10 @@ Open a Terminal in your project's folder and run:
<PackageManagerTabs
command={{
npm: 'npm install -D @testing-library/react-native',
yarn: 'yarn add -D @testing-library/react-native',
pnpm: 'pnpm add -D @testing-library/react-native',
bun: 'bun add -D @testing-library/react-native',
npm: 'npm install -D @testing-library/react-native@next',
yarn: 'yarn add -D @testing-library/react-native@next',
pnpm: 'pnpm add -D @testing-library/react-native@next',
bun: 'bun add -D @testing-library/react-native@next',
}}
/>
+4 -4
View File
@@ -8,10 +8,10 @@ Open a Terminal in your project's folder and run:
<PackageManagerTabs
command={{
npm: 'npm install -D @testing-library/react-native',
yarn: 'yarn add -D @testing-library/react-native',
pnpm: 'pnpm add -D @testing-library/react-native',
bun: 'bun add -D @testing-library/react-native',
npm: 'npm install -D @testing-library/react-native@next',
yarn: 'yarn add -D @testing-library/react-native@next',
pnpm: 'pnpm add -D @testing-library/react-native@next',
bun: 'bun add -D @testing-library/react-native@next',
}}
/>
+1 -2
View File
@@ -6,8 +6,7 @@ const LATEST_VERSION = '13.x';
const PreReleaseBanner = () => (
<div className="pre-release-banner">
<span>
You are viewing documentation for <strong>v14 alpha</strong>. This version is under active
development and APIs may change.
You are viewing documentation for <strong>v14 RC</strong>.
</span>
</div>
);