Get 2024 Templates Mega Bundle!14 Bootstrap, Vue & React Templates + 3 Vector Sets
Get for 99$

Inserting html calendar into react


I need a calendar in my React app and I want to use the calendar from Metronic html admin dashboard. How can I do it?


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (2)


Hi,

Thank you for reaching out to us.

In our React version, we currently don't utilize the React-Fullcalendar plugin.

You can install React-Fullcalendar dependencies using the following command:

npm install --save \
@fullcalendar/core \
@fullcalendar/react \
@fullcalendar/daygrid


After installation, you can use it in your component as demonstrated below:

<FullCalendar
plugins={[ dayGridPlugin ]}
initialView="dayGridMonth"
weekends={false}
events={[
{ title: "event 1", date: "2019-04-01" },
{ title: "event 2", date: "2019-04-02" }
]}
/>


For more examples, refer to the official Fullcalendar docs.

Regards,
Lauris Stepanovs,
Keenthemes Support Team


Deleted comment
Deleted comment

My experience playing real money roulette at El Royale Casino www.elroyalecasino.com/online-roulette-real-money was fantastic! The diverse range of roulette variations, from classic European to engaging French options, kept me entertained for hours. Plus, the convenie https://elroyalecasino.com/online-roulette-real-moneynce of being able to play on my mobile device made it even better - highly recommended for anyone looking for an exciting online roulette experience!


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(