From af70d141e67678382b29e590686b9fb75e8373e2 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 25 Jul 2022 10:58:37 -0500 Subject: [PATCH] Snippets: use default export for component --- .vscode/soapbox.code-snippets | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.vscode/soapbox.code-snippets b/.vscode/soapbox.code-snippets index 8ea749550..66da1a25b 100644 --- a/.vscode/soapbox.code-snippets +++ b/.vscode/soapbox.code-snippets @@ -31,9 +31,7 @@ " );", "};", "", - "export {", - " ${1:Component},", - "};" + "export default ${1:Component};" ], "description": "React component" },