Merge pull request #4 from Bouncey/chore/moveTemplates

Chore/move templates
This commit is contained in:
Stuart Taylor
2018-04-08 23:19:50 +01:00
committed by Mrugesh Mohapatra
parent b1cc6ff6cd
commit b546d8ed92
42 changed files with 13 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import './preview.css';
const mainId = 'fcc-main-frame';
export function Preview() {
return (
<div className='challenge-preview'>
<iframe className={'challenge-preview-frame'} id={mainId} />
</div>
);
}
Preview.displayName = 'Preview';
export default Preview;