Skip to content

Commit b08c858

Browse files
docs(intro): fix missing text rendering in code example (#225)
Co-authored-by: seungrodotlee <seungrodotlee@gmail.com>
1 parent b550d01 commit b08c858

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/docs/en/intro.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function Page() {
3131

3232
### Rendering Arrays with Specific Separators
3333

34-
<SplitView
34+
<SplitView
3535
left-title="without-react-simplikit.tsx"
3636
right-title="with-react-simplikit.tsx">
3737

@@ -46,6 +46,7 @@ function Page() {
4646
<>
4747
{texts.map((text, idx) => (
4848
<Fragment key={text}>
49+
<div>{text}</div>
4950
{idx < texts.length - 1 ? (
5051
<Border type="padding24" />
5152
) : null}

src/docs/ko/intro.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function Page() {
3131

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

34-
<SplitView
34+
<SplitView
3535
left-title="without-react-simplikit.tsx"
3636
right-title="with-react-simplikit.tsx">
3737

@@ -46,6 +46,7 @@ function Page() {
4646
<>
4747
{texts.map((text, idx) => (
4848
<Fragment key={text}>
49+
<div>{text}</div>
4950
{idx < texts.length - 1 ? (
5051
<Border type="padding24" />
5152
) : null}

0 commit comments

Comments
 (0)