Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>react-create-module-shykiNew to Visual Studio Code? Get it now.
react-create-module-shyki

react-create-module-shyki

shyki

|
4 installs
| (0) | Free
Create modules for react applications
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Create-React-Module

The extension creates 4 files

  • Todos.types.ts
import { FC } from 'react';

type TodosProps = {

};

export interface ITodos extends FC<TodosProps> {};
  • Todos.module.sass
.todos
  • Todos.tsx
import { ITodos } from './Todos.types';
import s from './Todos.module.sass';

export const Todos: ITodos = ({}) => {

  <div className={s.todos}></div>
}
  • index.ts
export { Todos } from './todos';
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft