All Projects → jcoreio → react-interval-rerender

jcoreio / react-interval-rerender

Licence: MIT License
render props component that rerenders its children at regular intervals

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-interval-rerender

SemartSkeleton
Symfony Skeleton
Stars: ✭ 49 (+206.25%)
Mutual labels:  skeleton
SkeletonBridgeRecon
The code for CVPR2019 Oral paper "A Skeleton-bridged Deep Learning Approach for Generating Meshes of Complex Topologies from Single RGB Images"
Stars: ✭ 72 (+350%)
Mutual labels:  skeleton
moodle-tool pluginskel
Generator of Moodle plugins skeletons
Stars: ✭ 35 (+118.75%)
Mutual labels:  skeleton
golang-api-skeleton
Go Golang API Skeleton
Stars: ✭ 24 (+50%)
Mutual labels:  skeleton
packager
Laravel Package Skeleton Generator - https://youtu.be/kQRQWzDEbGk
Stars: ✭ 20 (+25%)
Mutual labels:  skeleton
Angular-Gulp-Boilerplate
Clean but full-featured AngularJS boilerplate using Gulp workflow and best practices
Stars: ✭ 30 (+87.5%)
Mutual labels:  skeleton
Skeleton
Skeleton is a Social Engineering tool attack switcher
Stars: ✭ 44 (+175%)
Mutual labels:  skeleton
p3arsec
Parallel Patterns Implementation of PARSEC Benchmark Applications
Stars: ✭ 12 (-25%)
Mutual labels:  skeleton
scala-basic-skeleton
Starting point if you want to bootstrap a project in Scala
Stars: ✭ 16 (+0%)
Mutual labels:  skeleton
laravel-dashboard-skeleton-tile
A skeleton you can use to package up a tile for laravel-dashboard
Stars: ✭ 19 (+18.75%)
Mutual labels:  skeleton
laravel-skeleton
Скелет приложения на базе Laravel 5.3/5.4
Stars: ✭ 48 (+200%)
Mutual labels:  skeleton
hunt-skeleton
hunt framework project template.
Stars: ✭ 20 (+25%)
Mutual labels:  skeleton
Skeleton-Bones
Library for dynamically generating skeleton loader drawables for Layouts and Views
Stars: ✭ 78 (+387.5%)
Mutual labels:  skeleton
SlimREST
An app skeleton for building a REST API with the Slim PHP Micro-Framework
Stars: ✭ 22 (+37.5%)
Mutual labels:  skeleton
brunch-chicken-and-waffles
Brunch skeleton with CoffeeScript, LESS, Angular, and AngularUI with Bootstrap 3
Stars: ✭ 13 (-18.75%)
Mutual labels:  skeleton
phalcon-micro-rest-api-skeleton
This is a basic API REST skeleton written on Phalcon PHP. Great For building an MVP for your frontend app (Vue, react, angular, or anything that can consume an API)
Stars: ✭ 57 (+256.25%)
Mutual labels:  skeleton
ossos
Webbased Character Animation System
Stars: ✭ 158 (+887.5%)
Mutual labels:  skeleton
navigation-skeleton
This component allows you to show skeletons of pages during navigation process.
Stars: ✭ 16 (+0%)
Mutual labels:  skeleton
SwiftUI-Shimmer
Shimmer is a super-light modifier that adds a shimmering effect to any SwiftUI View, for example, to show that an operation is in progress. It works well on light and dark modes, and across iOS, macOS, tvOS and watchOS.
Stars: ✭ 168 (+950%)
Mutual labels:  skeleton
pkgkitten
Create simple packages which pass R CMD check
Stars: ✭ 31 (+93.75%)
Mutual labels:  skeleton

react-interval-rerender

CircleCI Coverage Status semantic-release Commitizen friendly npm version

Render props component that rerenders its children at regular intervals This is not the same as react-interval or react-interval-renderer.

Usage

npm install --save react-interval-rerender
import * as React from 'react'
import Interval from 'react-interval-rerender'

export const Clock = () => (
  <Interval delay={1000}>{() => new Date().toLocaleTimeString()}</Interval>
)

Props

delay?: ?number

The delay for setInterval. While !Number.isFinite(delay), no interval will be set. Whenever delay changes the interval will be reset.

children?: () => ?React.Node

Function to render the content. You can use this or render. children takes priority.

render?: () => ?React.Node

Function to render the content. You can use this or children.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].