repo.or.cz
/
boords-signature-composer.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Initial commit
[boords-signature-composer.git]
/
src
/
components
/
Container
/
Container.js
blob
e9aaa5a8e092437951bf09765641fceb8d1e1787
1
import React from 'react';
2
import './Container.css';
3
4
const Container = function({ children, className }) {
5
return (
6
<div className={`Container ${className}`}>
7
{children}
8
</div>
9
);
10
}
11
12
export default Container;