-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfeatures.tsx
31 lines (27 loc) · 888 Bytes
/
features.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React from 'react'
import tw from 'twin.macro'
const FeaturesStyle = tw.section``
const FeatureList = tw.ul`text-gray-700 m-4`
const Feature = tw.li`list-inside list-disc`
const Features: React.FunctionComponent = () => (
<FeaturesStyle>
<p>
Ready for high quality JAMStack projects for 2020, this highly performant,
lightweight and barebones starter includes preconfigured defaults for the
following libraries:
</p>
<FeatureList>
<Feature>Typescript</Feature>
<Feature>PostCSS</Feature>
<Feature>Storybook</Feature>
<Feature>TailwindCSS</Feature>
<Feature>Styled Components</Feature>
<Feature>Jest</Feature>
<Feature>Cypress</Feature>
<Feature>eslint</Feature>
<Feature>Prettier</Feature>
<Feature>lint-staged</Feature>
</FeatureList>
</FeaturesStyle>
)
export default Features