Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
static-layout: make blank components
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewagain committed Oct 13, 2016
1 parent c7e4685 commit fd0451c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/component/Button.js
@@ -0,0 +1,12 @@
import React from 'react';

class Button extends React.Component {
render() {
return (
<div>
Welcome to Button
</div>
);
}
}
export default Button;
12 changes: 12 additions & 0 deletions src/component/ButtonPanel.js
@@ -0,0 +1,12 @@
import React from 'react';

class ButtonPanel extends React.Component {
render() {
return (
<div>
Welcome to ButtonPanel
</div>
);
}
}
export default ButtonPanel;
12 changes: 12 additions & 0 deletions src/component/Display.js
@@ -0,0 +1,12 @@
import React from 'react';

class Display extends React.Component {
render() {
return (
<div>
Welcome to Display
</div>
);
}
}
export default Display;

0 comments on commit fd0451c

Please sign in to comment.