Skip to content

Commit 30403b4

Browse files
committed
create ViewerTemplate directory
1 parent a780d82 commit 30403b4

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React from 'react';
2+
import styles from './ViewerTemplate.scss';
3+
import classNames from 'classnames/bind';
4+
5+
const cx = classNames.bind(styles);
6+
7+
const ViewerTemplate = ({viewer, spaceNavigator}) => {
8+
return (
9+
<div className={cx('viewer-template')}>
10+
11+
</div>
12+
)
13+
}
14+
15+
export default ViewerTemplate;

nasa-apod/src/components/ViewerTemplate/ViewerTemplate.scss

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from './ViewerTemplate';

0 commit comments

Comments
 (0)