Skip to content

fix: Remove unnecessary vertical scrollbar and improve the example with tab format in "Rendering Arrays with Specific Separators" section #170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
12 changes: 2 additions & 10 deletions src/docs/en/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ function Page() {

### Rendering Arrays with Specific Separators

<SplitView>
<template #left>

::: code-group
```tsx [without-react-simplikit.tsx]
const texts = ['hello', 'react', 'world'];

Expand All @@ -53,10 +51,6 @@ function Page() {
}
```

</template>

<template #right>

```tsx [without-react-simplikit.tsx]
const texts = ['hello', 'react', 'world'];

Expand All @@ -70,9 +64,7 @@ function Page() {
);
}
```

</template>
</SplitView>
:::

## Minimizing Unintended Behavior and Bugs with Concise Implementation

Expand Down
12 changes: 2 additions & 10 deletions src/docs/ko/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ function Page() {

### 특정 요소로 구분하여 배열 렌더링하기

<SplitView>
<template #left>

::: code-group
```tsx [without-react-simplikit.tsx]
const texts = ['hello', 'react', 'world'];

Expand All @@ -53,10 +51,6 @@ function Page() {
}
```

</template>

<template #right>

```tsx [without-react-simplikit.tsx]
const texts = ['hello', 'react', 'world'];

Expand All @@ -70,9 +64,7 @@ function Page() {
);
}
```

</template>
</SplitView>
:::

## 간결한 구현으로, 의도하지 않은 동작이나 버그를 최소화해요

Expand Down