Code splitting in React is the practice of breaking down your application bundle into smaller chunks that can be loaded on demand, rather than loading the entire application at once. This technique helps reduce the initial load time by only loading the code necessary for the current view or functionality. React supports code splitting out of the box through dynamic import() syntax and the React.lazy API, making it easier to implement this important performance optimization.