diff options
Diffstat (limited to 'src/components/Paper.tsx')
-rw-r--r-- | src/components/Paper.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/Paper.tsx b/src/components/Paper.tsx new file mode 100644 index 0000000..0bbd88c --- /dev/null +++ b/src/components/Paper.tsx @@ -0,0 +1,11 @@ +import React from 'react'; + +const Paper: React.FC = ({ children }) => { + return ( + <div className="p-5 m-5 bg-white shadow rounded-md"> + {children} + </div> + ); +}; + +export default Paper; |