This commit is contained in:
ozakione 2024-03-20 16:39:55 +01:00
parent 9017fb9b1d
commit 2b37b51b36
12 changed files with 221 additions and 0 deletions

View file

@ -239,6 +239,7 @@ export default async function createConfigAsync() {
],
themes: ['live-codeblock', ...dogfoodingThemeInstances],
plugins: [
'showcase',
[
'./src/plugins/changelog/index.js',
{

View file

@ -0,0 +1,12 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/* eslint-disable @docusaurus/no-untranslated-text */
import React from 'react';
export default function ShowcaseComponent(props) {
return <div>Your friends are : {props.content.author}</div>;
}

View file

@ -0,0 +1,4 @@
{
"author": "John Doe",
"title": "My first blog post"
}