Files
study/modern-react/my-modern/App.js

11 lines
175 B
JavaScript

const APP_TITLE = 'React 앱';
export function getTriangle(base, height) {
return base * height / 2;
}
export class Article {
getAppTitle() {
return APP_TITLE;
}
}