Skip to content

Instantly share code, notes, and snippets.

@jasperfirecai2
Last active September 13, 2023 14:24
Show Gist options
  • Save jasperfirecai2/8a7171243f61067e94fa7c40f7ac1ce3 to your computer and use it in GitHub Desktop.
Save jasperfirecai2/8a7171243f61067e94fa7c40f7ac1ce3 to your computer and use it in GitHub Desktop.
Example react-icons offending code
'use client';
import React from 'react';
import { FaPencilAlt } from 'react-icons/fa';
export default function Page() {
return (
<div>
<FaPencilAlt>
<span>This child will not be rendered</span>
</FaPencilAlt>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment