https://github.com/prettier/prettier/issues/19518 - 2nd pass

생성일 비교 결과 만료 없음
0 삭제
22
2 추가
22
const t = html`
const t = html`
<ol>
<ol>
${items.map(
${items.map(
(entry) => html`
(entry) => html`
<li>
<li>
${
${
entry.children
entry.children
? html`
? html`
<ol>
<ol>
${entry.children.map(
${entry.children.map(
(child) => html`<li>${child.title}</li>`,
(child) => html`<li>${child.title}</li>`,
)}
)}
</ol>
</ol>
`
`
: entry.title
: entry.title
}
}
</li>
</li>
`,
`,
)}
)}
</ol>
</ol>
`;
`;