From 1b6e230df7ffd31226af1716f5e442c134ea1c38 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 13 Mar 2021 21:54:30 +0300 Subject: feat: install tailwindcss --- src/components/Paper.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/components/Paper.tsx (limited to 'src/components/Paper.tsx') 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 ( +
+ {children} +
+ ); +}; + +export default Paper; -- cgit v1.2.3