1.1.0 • Published 5 years ago
@jlengstorf/gatsby-theme-showcase v1.1.0
Gatsby Theme Showcase
Add a showcase to any site.
What you get from this theme
- Airtable integration
- A React component to display data
Installation
To use this theme in your Gatsby sites, follow these instructions:
Install the theme
npm install --save @jlengstorf/gatsby-theme-showcase
Add the theme to your
gatsby-config.js
:module.exports = { plugins: ['@jlengstorf/gatsby-theme-showcase'], };
Start your site
gatsby develop
Usage
Theme options
Key | Default value | Description |
---|---|---|
todo | tkt |
Example usage
// gatsby-config.js
module.exports = {
plugins: ['@jlengstorf/gatsby-theme-showcase'],
};
Exported components
Showcase
description of what this is and why it's useful
Example usage in MDX
In any MDX file:
import { Showcase } from '@jlengstorf/gatsby-theme-showcase';
# Look at my photos!
<Showcase />
Example usage in React components
In any React component:
import React from 'react';
import { Showcase } from '@jlengstorf/gatsby-theme-showcase';
export default () => (
<div>
<Showcase />
</div>
);
How to shadow this component
If you want to use component shadowing with this component, create a file at the following path in your site:
src/@jlengstorf/gatsby-theme-showcase/components/showcase.js