// React
function App() {
return <h1>Привет, React!</h1>;
}
// Vue
export default {
template: `<h1>Привет, Vue!</h1>`
}
// NestJS
@Controller('cats')
class CatsController {}
// React
function App() {
return <h1>Привет, React!</h1>;
}
// Vue
export default {
template: `<h1>Привет, Vue!</h1>`
}
// NestJS
@Controller('cats')
class CatsController {}