Create-React-Module
The extension creates 4 files
import { FC } from 'react';
type TodosProps = {
};
export interface ITodos extends FC<TodosProps> {};
.todos
import { ITodos } from './Todos.types';
import s from './Todos.module.sass';
export const Todos: ITodos = ({}) => {
<div className={s.todos}></div>
}
export { Todos } from './todos';
| |