Skip to content
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