HM-68. Верcтка страницы Not Found (#42)

This commit is contained in:
Михаил
2020-08-01 23:09:32 +03:00
committed by GitHub
parent f7ddce5bb0
commit 30545ab960
6 changed files with 45 additions and 2 deletions

View File

@ -0,0 +1,9 @@
import Component from '../component/Component';
class NotFoundContent extends Component {
constructor (parentNode) {
super('#not-found-content', parentNode);
}
}
export default NotFoundContent;

View File

@ -0,0 +1,3 @@
import NotFoundContent from './NotFoundContent';
export default NotFoundContent;