1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

intial commit

This commit is contained in:
muerwre 2019-04-01 15:50:09 +07:00
parent 1d82241d2c
commit 44e10599d7
25 changed files with 17375 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import * as React from 'react';
const styles = require("./styles.scss");
interface ISomeComponentProps {}
export const SomeComponent: React.FunctionComponent<ISomeComponentProps> = (props) => {
const { } = props;
return (
<div className={styles.main}>This is some component</div>
);
};
export default SomeComponent;

View file

@ -0,0 +1,2 @@
.main {
}