burkeholland / simple-react-snippets

Simple React Snippets for VS Code that you will actually use
212 stars 83 forks source link

async/await functional components #93

Open vinceflores opened 10 months ago

vinceflores commented 10 months ago

I recently started working with NextJS and came across async/await functional components

maybe a snippet like arfce

For example

export default async function Foo() {
return await <div></div>; 
}