Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>mateus amaral common snippetsNew to Visual Studio Code? Get it now.
mateus amaral common snippets

mateus amaral common snippets

Mateus Amaral

|
27 installs
| (0) | Free
Common snippets for a better development experience.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

mateus-amaral--common-snippets

download for vscode: https://marketplace.visualstudio.com/items?itemName=MateusAmaral.mateus-amaral--common-snippets

Common snippets for a better development experience

Examples for React Component:

in your component file type this command: "rfc"

export function Sidebar(){
return (
<div>
 <h1>Sidebar</h1>
</div>
);
}

in your file unit test file type this command: "rut"

import { render, screen } from '@testing-library/react';

describe('<Sidebar/>', () => {
it('deve renderizar componente', () => {
//Arrange
render(<Sidebar/>);

//Act

//Assert

expect(screen).toBeDefined();
});
});
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft